glTranslatef function opengl

void glTranslatef(
  1. double x,
  2. double y,
  3. double z
)
GLAPI void GLAPIENTRY glTranslatef( GLfloat x, GLfloat y, GLfloat z )

Implementation

void glTranslatef(double x, double y, double z) {
  final glTranslatefAsFunction = _glTranslatef
      .cast<NativeFunction<Void Function(Float x, Float y, Float z)>>()
      .asFunction<void Function(double x, double y, double z)>();
  return glTranslatefAsFunction(x, y, z);
}