1
In addition to the links that Ankit mentioned, you can try doing this using the Annotations feature from LEADTOOLS, which provides the ability to draw Curve annotation object using the AnnCurveObject class.
You can find more details about this object here:
https://www.leadtools.com/help/leadtools/v19m/dh/ac/anncurveobject.html
Note that you can customize object’s bending between control points using the Tension property. More details can be found here:
https://www.leadtools.com/help/leadtools/v19m/dh/ac/anncurveobject-tension.html
0
Hello Guys,
Thanks for your valuable suggestion. But Ankit, actually I refer all this links but I coudn't get any clear idea regarding my perspective of Arc. I have to give radius to Arc.
public Point StartPointOfArc
{
get { return new Point(StartPointCanvasLeftPosition , StartPointCanvasTopPosition ); }
set
{
_StartPointOfArc = value;
}
}
public Point EndPointOfArc
{
get { return new Point(EndPointCanvasLeftPosition, EndPointCanvasTopPosition); }
set
{
_EndPointOfArc = value;
}
}
public Point PivotPointOfArc
{
get { return new Point(PivotPointCanvasLeftPosition, PivotPointCanvasTopPosition); }
set
{
_PivotPointOfArc = value;
}
}
These are my three points. And I have to use ArcSegment to draw arc between StartPointOf Arc and EndPointOfArc considering PivotPointOfArc as center.