Files
UnrealEngine/Engine/Source/ThirdParty/Imath/Imath-3.1.12/website/examples/gl.cpp
2025-05-18 13:04:45 +08:00

13 lines
148 B
C++

#include <Imath/ImathGL.h>
void
gl_example()
{
Imath::M44f M;
glPushMatrix (M);
Imath::V3f v (0.0f, 1.0f, 2.0f);
glVertex (v);
}