Hi,
I have an object with multiple meshes, after I project a curve into this object, many curves are created.
I tried to join the array curves into one curve but unsuccessful.
Here is my code:
double epsilon = 0.001;
Curve[] rs = Curve.ProjectToBrep(myCurve, myListTargetBrep, myWorkingPlane.Normal, epsilon);
Curve[] prjCrv = Curve.JoinCurves(rs, epsilon, true);
Can you help me?