translation property
      
      Vec2D
      get
      translation
      
    
    
    
Implementation
Vec2D get translation {
  return Vec2D.clone(_translation);
}
      
      set
      translation
      (Vec2D value) 
      
    
    
    
Implementation
set translation(Vec2D value) {
  Vec2D.copy(_translation, value);
  markTransformDirty();
}