예제 #1
0
 public static void Torus()
 {
     Painter.PaintTorus();
 }
예제 #2
0
 public static void Cube()
 {
     Painter.PaintCube(Vector3.Zero, 1);
 }
예제 #3
0
 public static void LogarithmicSpiral()
 {
     Painter.PaintLogarithmicSpiral();
 }
예제 #4
0
 public static void Spiral()
 {
     Painter.PaintSpiral();
 }
예제 #5
0
 public static void Sphere()
 {
     Painter.PaintSphere();
 }
예제 #6
0
 public static void Pyramid()
 {
     Painter.PaintRegularPyramid(Vector3.Zero, 1, 8);
 }
예제 #7
0
 public static void Circle()
 {
     GL.Color3(Color.GreenYellow);
     Painter.PaintCircle();
 }