Smrf.NodeXL.Visualization.Wpf.TriangleVertexDrawingHistory.TriangleVertexDrawingHistory C# (CSharp) Method

TriangleVertexDrawingHistory() public method

Initializes a new instance of the class.
public TriangleVertexDrawingHistory ( IVertex vertex, System.Windows.Media.DrawingVisual drawingVisual, System.Boolean drawnAsSelected, Double halfWidth ) : System
vertex IVertex /// The vertex that was drawn. ///
drawingVisual System.Windows.Media.DrawingVisual /// The DrawingVisual object that was used to draw the vertex. ///
drawnAsSelected System.Boolean /// true if the vertex was drawn as selected. ///
halfWidth Double /// The half-width of the triangle that was drawn for . ///
return System
    public TriangleVertexDrawingHistory
    (
        IVertex vertex,
        DrawingVisual drawingVisual,
        Boolean drawnAsSelected,
        Double halfWidth
    )
    : base(vertex, drawingVisual, drawnAsSelected)
    {
        m_dHalfWidth = halfWidth;

        // AssertValid();
    }