Skip to content

Commit 2376579

Browse files
committed
removed an unused struct.
1 parent 1ce5c3b commit 2376579

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

OpenGL-Animated-Circles.cpp

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,6 @@ struct Point {
66
GLint y;
77
};
88

9-
struct Circle {
10-
Point p;
11-
int radius;
12-
};
13-
149
void init() {
1510
glClearColor(1.0, 1.0, 1.0, 0.0);
1611
glColor3f(0.0f, 0.0f, 0.0f);
@@ -70,4 +65,4 @@ int main(int argc, char **argv) {
7065
glutMainLoop();
7166

7267
return 0;
73-
}
68+
}

0 commit comments

Comments
 (0)