setAsViewMatrix method

void setAsViewMatrix(
  1. Vector3 position,
  2. Vector3 target,
  3. Vector3 up
)

Set the matrix to be a view matrix.

Implementation

void setAsViewMatrix(Vector3 position, Vector3 target, Vector3 up) {
  setViewMatrix(this, position, target, up);
}