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 ebf29b3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 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

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


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

0 comments on commit ebf29b3

Please sign in to comment.