public CadViewPort(String name, Model parentMdl, Point center, Double height, Double width, Vector scaleVec, Angle rotation) : this(name, parentMdl, center, new Vector(width, height, null), scaleVec, rotation) { }
public CadViewPort(String name, Model parentMdl) { this.parentModel = parentMdl; Name = name; ViewAspect = new Vector(3, 3, null); Origin = new Point(0,0); ScaleVector = new Vector(1.0, 1.0, 1.0); Rotation = new Angle(0); updateBoundingBox(); }
public CadViewPort(String name, Model parentMdl, Point center, Vector aspectVec, Vector scaleVec, Angle rotation) : this(name, parentMdl) { Origin = center; ViewAspect = aspectVec; ScaleVector = scaleVec; Rotation = rotation; }
private void createABlankModel() { if(null == aModel) { aModel = new Model(); dxfFileName_NCDOT_Dsn = @"..\..\..\TestDataSets\NCDOT_B4656\B4656_RDY_DSN.dxf"; } }