Skip to content

Commit 60fa4b7

Browse files
committed
fix IWire issue
1 parent b0df06c commit 60fa4b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/interfaces.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,12 +272,12 @@ export interface OCC {
272272
makeTorus(center: PointLike, vector: VectorLike, mainRadius: Real, smallRadius: Real): ISolid;
273273

274274
// boolean operation
275-
// Wrires
276-
275+
// Edges
277276
makeLine(point1: PointLike, point2: PointLike): IWire;
278277
makeArc3P(point1: PointLike, point2: PointLike, point3: PointLike): IWire;
279278
makeCircle(center: PointLike, normal: VectorLike, radius: Real): IWire;
280-
makeWire(...args: IWire[]): IWire;
279+
// Wires
280+
makeWire(...args: (IEdge | IWire)[]): IWire;
281281

282282

283283
// --- TO IMPLEMENT SOMEHOW !!!

0 commit comments

Comments
 (0)