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