algorithmic modeling for Rhino
Tags:
Hi Carcassi,
I don't really understand what you mean by a point intersected by TWO lines and a surface. There are more resulting points isn't it?
However here is an example how to use the Intersection namespace and in special CurveIntersections in rhinocommon. This should give you a clue and you adapt it to your needs:
Rhino.Geometry.Intersect.CurveIntersections sect;
sect = Rhino.Geometry.Intersect.Intersection.CurveSurface(C, S, 0.001, 0.001);
List<Point3d> results = new List<Point3d>();
foreach(Rhino.Geometry.Intersect.IntersectionEvent iEvent in sect)
results.Add(iEvent.PointA); A = results;
The GH is attached.
Good work,
FF
Welcome to
Grasshopper
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
Added by Parametric House 0 Comments 0 Likes
© 2024 Created by Scott Davidson. Powered by