glTranslated function opengl
GLAPI void GLAPIENTRY glTranslated( GLdouble x, GLdouble y, GLdouble z )
Implementation
void glTranslated(double x, double y, double z) {
final glTranslatedAsFunction = _glTranslated
.cast<NativeFunction<Void Function(Double x, Double y, Double z)>>()
.asFunction<void Function(double x, double y, double z)>();
return glTranslatedAsFunction(x, y, z);
}