pushTransform method

EngineLayer pushTransform (Float64List matrix4)

Pushes a transform operation onto the operation stack.

The objects are transformed by the given matrix before rasterization.

See pop for details about the operation stack.

Implementation

EngineLayer pushTransform(Float64List matrix4) {
  assert(_matrix4IsValid(matrix4));
  return _pushTransform(matrix4);
}