What would be a method to project point to a plane by direction?
Is it only this:
Rhino.Geometry.Intersect.Intersection.LinePlane(line, plane);
Or there is something with plane vector and point ?
What would be a method to project point to a plane by direction?
Is it only this:
Rhino.Geometry.Intersect.Intersection.LinePlane(line, plane);
Or there is something with plane vector and point ?
Yep, that’s the method to use.
If you need a second point for the line, just add your point to the direction vector.
– Dale