MatrixTranslate function

  1. @Deprecated('Use Matrix4.translation(Vector3(x,y,z)) instead')
Matrix4 MatrixTranslate(
  1. double x,
  2. double y,
  3. double z
)

Implementation

@Deprecated('Use Matrix4.translation(Vector3(x,y,z)) instead')
Matrix4 MatrixTranslate(double x, double y, double z) =>
    Matrix4.translation(Vector3(x, y, z));