-
Notifications
You must be signed in to change notification settings - Fork 0
/
echo_model_sphere_pointzero75.cpp
56 lines (47 loc) · 1.46 KB
/
echo_model_sphere_pointzero75.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// echo_model_sphere.cpp
/*
This file is part of L-Echo.
L-Echo is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
L-Echo is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with L-Echo. If not, see <http://www.gnu.org/licenses/>.
*/
#include "echo_platform.h"
#include "echo_gfx.h"
#ifdef ECHO_NDS
#include <nds.h>
#elif ECHO_OSX //OS X
#include <OpenGL/gl.h>
#include <OpenGL/glu.h>
#include <GLUT/glut.h>
#else
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glut.h>
#endif
//stats: LATS: 6, ANGLE_INCR: 0.523599, NDS_LATS: 2, NDS_ANGLE_INCR: 1.570796
void draw_sphere_pointzero75()
{
#ifndef ECHO_NDS
glutSolidSphere(0.075f, 6, 6);
#else
glBegin(GL_QUAD_STRIP);
glVertex3v16(-307, 307, -307);
glVertex3v16(-307, -307, -307);
glVertex3v16(307, 307, -307);
glVertex3v16(307, -307, -307);
glVertex3v16(307, 307, 307);
glVertex3v16(307, -307, 307);
glVertex3v16(-307, 307, 307);
glVertex3v16(-307, -307, 307);
glVertex3v16(-307, 307, -307);
glVertex3v16(-307, -307, -307);
glEnd();
#endif
}