Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a code snipet that displays the angle from the X axis for a line:
public static void AngleFromXAxis()
{
Point2d pt1 = new Point2d(2, 5);
Point2d pt2 = new Point2d(5, 2);
Application.ShowAlertDialog("Angle from XAxis: " +
pt1.GetVectorTo(pt2).Angle.ToString());
pPtRes = acDoc.Editor.GetPoint(pPtOpts);
}
is there a way to capture that value in my program
something like:
double myAngle = ...?
Thanks,
~Giovonnae
Solved! Go to Solution.