Skip to content

Commit

Permalink
fix IWire issue
Browse files Browse the repository at this point in the history
  • Loading branch information
erossignon committed Jun 13, 2023
1 parent b0df06c commit 60fa4b7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -272,12 +272,12 @@ export interface OCC {
makeTorus(center: PointLike, vector: VectorLike, mainRadius: Real, smallRadius: Real): ISolid;

// boolean operation
// Wrires

// Edges
makeLine(point1: PointLike, point2: PointLike): IWire;
makeArc3P(point1: PointLike, point2: PointLike, point3: PointLike): IWire;
makeCircle(center: PointLike, normal: VectorLike, radius: Real): IWire;
makeWire(...args: IWire[]): IWire;
// Wires
makeWire(...args: (IEdge | IWire)[]): IWire;


// --- TO IMPLEMENT SOMEHOW !!!
Expand Down

0 comments on commit 60fa4b7

Please sign in to comment.