UpdateModelMatrix method

Matrix4 UpdateModelMatrix(
  1. Matrix4 parent
)

Implementation

VM.Matrix4 UpdateModelMatrix(final VM.Matrix4 parent) {
  // copy the mvMatrix, so we don't change the original
  _modelMatrix.setFrom(parent);
  _modelMatrix.multiply(transform);
  return _modelMatrix;
}