Ejemplo n.º 1
0
 /// <summary>
 /// Draws the lines in a control polygons.
 /// <para>This is an helper function.</para>
 /// </summary>
 /// <param name="line">Line between two grips.</param>
 /// <param name="startStatus">Index of Grip status at start of line.</param>
 /// <param name="endStatus">Index if Grip status at end of line.</param>
 /// <since>5.0</since>
 public void DrawControlPolygonLine(Pixel.Rhino.Geometry.Line line, int startStatus, int endStatus)
 {
     DrawControlPolygonLine(line.From, line.To, startStatus, endStatus);
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Draws the lines in a control polygons.
 /// <para>This is an helper function.</para>
 /// </summary>
 /// <param name="line">Line between two grips.</param>
 /// <param name="startStatus">Grip status at start of line.</param>
 /// <param name="endStatus">Grip status at end of line.</param>
 /// <since>5.0</since>
 public void DrawControlPolygonLine(Pixel.Rhino.Geometry.Line line, GripStatus startStatus, GripStatus endStatus)
 {
     DrawControlPolygonLine(line, startStatus.m_index, endStatus.m_index);
 }