Hello, Team
private void RunScript(Brep B, Plane P, out object Curves, out object Points)
{
// Write your logic here
Curve Crv;
Point3d Pts;
Rhino.Geometry.Intersect.Intersection.BrepPlane(B, P, 0.001, out Crv, out Pts);
Curves = Crv;
Points = Pts;
}
This is how we solve Brep|Plane intersection in C# (using Rhinocommon)
It seems trickier to do the same in Python ( I can’t clarify how to assign ‘out Crv’ and ‘out Pts’ arguments in Python.
Can you, please, help me create the correct script in Python? Thanks
pls. see a pic attached
2 posts - 2 participants
