the class stores the baseline data for curtain wall
Inheritance: Line2D
Example #1
0
 /// <summary>
 /// default constructor
 /// </summary>
 /// <param name="wallGeo">
 /// the mapped wall geometry information
 /// </param>
 public WallDrawing(WallGeometry wallGeo)
 {
     m_coordinateFont = new Font("Verdana", 10, FontStyle.Regular);
     m_wallLine2D     = new WallBaseline2D();
     m_myDocument     = wallGeo.MyDocument;
     m_refGeometry    = wallGeo;
 }
Example #2
0
 /// <summary>
 /// default constructor
 /// </summary>
 /// <param name="wallGeo">
 /// the mapped wall geometry information
 /// </param>
 public WallDrawing(WallGeometry wallGeo)
 {
     m_coordinateFont = new Font("Verdana", 10, FontStyle.Regular);
      m_wallLine2D = new WallBaseline2D();
      m_myDocument = wallGeo.MyDocument;
      m_refGeometry = wallGeo;
 }
Example #3
0
 /// <summary>
 /// copy constructor
 /// </summary>
 /// <param name="wallLine2D">
 /// the line to be copied
 /// </param>
 public WallBaseline2D(WallBaseline2D wallLine2D)
     : base((Line2D)wallLine2D)
 {
     m_assistantPoint = wallLine2D.AssistantPoint;
 }
Example #4
0
 /// <summary>
 /// copy constructor
 /// </summary>
 /// <param name="wallLine2D">
 /// the line to be copied
 /// </param>
 public WallBaseline2D(WallBaseline2D wallLine2D)
     : base((Line2D)wallLine2D)
 {
     m_assistantPoint = wallLine2D.AssistantPoint;
 }