mirror of
https://github.com/dinamicoplus/2007-NDSProjects.git
synced 2025-06-19 01:15:44 -04:00
17 lines
250 B
C
Executable File
17 lines
250 B
C
Executable File
#include <PA9.h>
|
|
int main()
|
|
{
|
|
PA_Init3D();//init
|
|
while(1)
|
|
{
|
|
PA_Init3DDrawing(0.0,0.0,1.0,0.0,0.0,0.0);
|
|
glPushMatrix();
|
|
PA_3DBox(0.0,0.0,0.0,0.5,0.1,1.0,0.0,0.0,0.0,255,0,0);//box
|
|
glPopMatrix(1);
|
|
glFlush();//show
|
|
}
|
|
|
|
return 0;
|
|
}//
|
|
|