RaylibMatrixExt constructor

RaylibMatrixExt(
  1. Raylib rl
)

Implementation

RaylibMatrixExt(super.rl) {
  MatrixDeterminant   = dwrap1('MatrixDeterminant');
  MatrixTrace         = dwrap1('MatrixTrace');
  MatrixTranspose     = swrap1('MatrixTranspose');
  MatrixInvert        = swrap1('MatrixInvert');
  MatrixIdentity      = swrap0('MatrixIdentity');
  MatrixAdd           = swrap2('MatrixAdd');
  MatrixSubtract      = swrap2('MatrixSubtract');
  MatrixMultiply      = swrap2('MatrixMultiply');
  MatrixMultiplyValue = swrap2('MatrixMultiplyValue');
  MatrixTranslate     = swrap3('MatrixTranslate');
  MatrixRotate        = swrap2('MatrixRotate');
  MatrixRotateX       = swrap1('MatrixRotateX');
  MatrixRotateY       = swrap1('MatrixRotateY');
  MatrixRotateZ       = swrap1('MatrixRotateZ');
  MatrixRotateXYZ     = swrap1('MatrixRotateXYZ');
  MatrixRotateZYX     = swrap1('MatrixRotateZYX');
  MatrixScale         = swrap3('MatrixScale');
  MatrixFrustum       = swrap6('MatrixFrustum');
  MatrixPerspective   = swrap4('MatrixPerspective');
  MatrixOrtho         = swrap6('MatrixOrtho');
  MatrixLookAt        = swrap3('MatrixLookAt');
  MatrixToFloatV      = swrap1('MatrixToFloatV');
  MatrixCompose       = swrap3('MatrixCompose');
  MatrixDecompose     = dwrap4('MatrixDecompose');
}