MatrixLookAt method

MatrixStructType MatrixLookAt(
  1. Vector3StructType eye,
  2. Vector3StructType target,
  3. Vector3StructType up
)

Implementation

MatrixStructType MatrixLookAt(Vector3StructType eye, Vector3StructType target, Vector3StructType up)
  => RaylibMatrixFactories.lookAt(eye, target, up) as MatrixStructType;