translationValues method

T translationValues(
  1. double x,
  2. double y,
  3. double z
)

Creates an Attribute instance with a Matrix4 translated by the given values.

Implementation

T translationValues(double x, double y, double z) =>
    builder(Matrix4.translationValues(x, y, z));