示例#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();
 }