Transformation.translate constructor

Transformation.translate(
  1. double x,
  2. double y,
  3. double z
)

shifts display entity

Implementation

factory Transformation.translate(double x, double y, double z) =>
    Transformation(translation: (x, y, z));