Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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);
}