示例#1
0
文件: GL.cs 项目: 2max968/Kritzelv2
 public static void Vertex2(System.Drawing.PointF p)
 {
     Opengl32.glVertex2f(p.X, p.Y);
 }
示例#2
0
文件: GL.cs 项目: 2max968/Kritzelv2
 public static void Vertex2(float x, float y)
 {
     Opengl32.glVertex2f(x, y);
 }