Hello! I have to create a profile section from lines with corners and fillets.
As a result i have a list of lines . How to join/connect this lines to get one curve from them, so i can make a surface from them?
The join command results an array so its still not a single curve.
Thanks.
var crv = new List<Curve>();
crv.Add(new LineCurve(new Point2d(0, 0), new Point2d(60, 0)));
crv.Add(new LineCurve(new Point2d(60, 0), new Point2d(60, 15)));
crv.Add(new LineCurve(new Point2d(60, 15), new Point2d(10, 15)));
crv.Add(new LineCurve(new Point2d(10, 55), new Point2d(0, 55)));
crv.Add(new LineCurve(new Point2d(0, 55), new Point2d(0, 0)));
crv.Add(new ArcCurve(Curve.CreateFillet(crv[0], crv[1], 6, 0, 0)));
crv.Add(crv[0].Trim(54, 60));
crv.Add(crv[1].Trim(1, 6));
var brep = Brep.AddTrimCurve(curves); ///----works onli with single object , not array,list!
doc.Objects.AddBrep(brep);
The last 2 addition of Trim results create new curves, not change the existing curves
And the Trims you apply create 2 small curves I think is not what you want:
Damn . I checked the lines , and trims,cleared everithing. Now the Brep.CreatePLanarBreps drops null.I tried maka a surface in Rhino from this lines and it worked, but not in the script.
var crv = new List<Curve>();
crv.Add(new LineCurve(new Point2d(0, 0), new Point2d(60, 0)));
crv.Add(new LineCurve(new Point2d(60, 0), new Point2d(60, 15)));
crv.Add(new LineCurve(new Point2d(60, 15), new Point2d(10, 15)));
crv.Add(new LineCurve(new Point2d(10, 55), new Point2d(0, 55)));
crv.Add(new LineCurve(new Point2d(0, 55), new Point2d(0, 0)));
crv.Add(new LineCurve(new Point2d(10, 55), new Point2d(10, 15)));
crv.Add(new ArcCurve(Curve.CreateFillet(crv[0], crv[1], 6, 0, 0)));
crv.Add(crv[0].Trim(-1, 54));
crv.Add(crv[1].Trim(6, 16));
crv.RemoveAt(0);
crv.RemoveAt(0);
foreach (var c in crv)
{
doc.Objects.AddCurve(c);
}
var brep = Brep.CreatePlanarBreps(crv);
if (brep != null)
{
foreach (var b in brep)
{
doc.Objects.AddBrep(b);
}
//doc.Views.Redraw();
}
if (brep != null)
{
var bb = brep[0].Faces;
var extrude = Brep.CreateFromOffsetFace(bb[0], 2000, 1, false, true);
doc.Objects.AddBrep(extrude);
}
return Result.Success;
Out of curiosity I did some tests and found a working setup (in python but I suppose it applies to your code as well)
I was suspicious of the passing of 2D points so I changed it to Point3d with all z values zero.
Second I already made the 2 curves short enough to accomodate for the the fillet and that worked as well: