toMatrix4 property

Matrix4 toMatrix4

Implementation

Matrix4 get toMatrix4 {
  Matrix4 mat = data.base;
  for (_TransformData transform in _transforms) mat = transform(mat);
  return mat;
}