rlTranslatef method

  1. @override
void rlTranslatef(
  1. double x,
  2. double y,
  3. double z
)
override

Multiply the current matrix by a translation matrix

Implementation

@override
void rlTranslatef(
  double x,
  double y,
  double z,
) => _ffi.rlTranslatef(
  x,
  y,
  z,
);