Smrf.NodeXL.Layouts.FruchtermanReingoldVertexInfo.FruchtermanReingoldVertexInfo C# (CSharp) Method

FruchtermanReingoldVertexInfo() public method

Initializes a new instance of the class.
public FruchtermanReingoldVertexInfo ( PointF initialLocation ) : System
initialLocation System.Drawing.PointF /// The vertex's initial location within the bounded graph rectangle. ///
return System
    public FruchtermanReingoldVertexInfo
    (
        PointF initialLocation
    )
    {
        UnboundedLocationX = initialLocation.X;
        UnboundedLocationY = initialLocation.Y;

        DisplacementX = 0;
        DisplacementY = 0;

        AssertValid();
    }