We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
from build123d import * from ocp_vscode import show with BuildSketch() as t1: with BuildLine(): l1 = Polyline((10, 20), (-20, 20), (-20, -20), (10, -20)) RadiusArc(l1 @ 0, l1 @ 1, 25) make_face() arc = RadiusArc((10, 20), (10, -20), 25) outside_curve = t1.sketch.edges().sort_by(Axis.X)[-1] # outside_curve = arc.edge() offset_curve = outside_curve.offset_2d(10, side=Side.RIGHT, closed=False) show(outside_curve, offset_curve) trimmed_curve = offset_curve.trim(0.2, 1)
trim fails when outside_curve is created from the sketch but not when directly from RadiusArc.
trim
outside_curve
RadiusArc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
trim
fails whenoutside_curve
is created from the sketch but not when directly fromRadiusArc
.The text was updated successfully, but these errors were encountered: