Skip to content

Commit bcc4dc8

Browse files
committed
small builder change
1 parent 98ccace commit bcc4dc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compas_occ/brep/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def build_edge2d(self, edgedata, surface: Geom.Geom_Surface) -> TopoDS.TopoDS_Ed
111111

112112
if edgedata["type"] == CurveType.LINE:
113113
curve = Geom2d.Geom2d_Line(conversions.line_to_occ2d(edgedata["curve"]))
114-
params = [start, end]
114+
params = [start, end, u, v]
115115

116116
elif edgedata["type"] == CurveType.CIRCLE:
117117
curve = Geom2d.Geom2d_Circle(conversions.circle_to_occ2d(edgedata["curve"]))

0 commit comments

Comments
 (0)