translation property

Vec2D translation

Implementation

Vec2D get translation {
  return Vec2D.clone(_translation);
}
void translation=(Vec2D value)

Implementation

set translation(Vec2D value) {
  Vec2D.copy(_translation, value);
  markTransformDirty();
}