コード例 #1
0
 public PhysicalEntity3D(Shape3D shape, Rational shapeSize, Rational shapeDensity, Location3D location)
 {
     this.shape        = shape;
     this.shapeSize    = shapeSize;
     this.shapeDensity = shapeDensity;
     this.location     = location;
 }
コード例 #2
0
        public void DrawOpenGLDouble(Rational cubeSize, Location3D translation)
        {
            GL.Begin(BeginMode.QuadStrip);

            // Find corners



            //GL.Vertex3(translation.x.value.ConvertToDouble()


            GL.End();
        }
コード例 #3
0
 public void DrawOpenGLDouble(Rational cubeSize, Location3D translation)
 {
     throw new NotImplementedException();
 }