示例#1
0
 public VertexList(VertexScaleTool tool, VertexSolid solid)
 {
     Tool   = tool;
     Solid  = solid;
     Points = new List <VertexPoint>();
     Update();
 }
示例#2
0
 public VertexPoint(VertexScaleTool tool, VertexSolid solid)
 {
     Tool             = tool;
     DraggingPosition = Position = Vector3.Zero;
     Solid            = solid;
     Vertices         = new List <MutableVertex>();
     Faces            = new List <MutableFace>();
 }
示例#3
0
 public ScaleOrigin(VertexScaleTool vmScaleTool)
 {
     _vmScaleTool = vmScaleTool;
     Width        = 10;
 }