Message 1 of 7
How to get Normal vector of a Line?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all. When I try to get the normal vector of a line I get (0,0,1) vector though I tried any rotation with my line. How should I get the normal vector of a line?
Line line = new Line(pt1,pt2); Vector3d v3d = line.Normal; ed.WriteMessage(line.Normal.ToString());