@cadit-app/manifold-fillet 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4,7 +4,7 @@
4
4
  * Point-based selection: Find edges nearest to a 3D point
5
5
  * Angle-based selection: Find all edges sharper than a threshold angle
6
6
  */
7
- import { Manifold } from 'manifold-3d';
7
+ import type { Manifold } from 'manifold-3d';
8
8
  /** Point-based edge selection - fillet edge nearest to a point */
9
9
  export interface PointEdgeSelection {
10
10
  type: 'point';
package/dist/index.d.ts CHANGED
@@ -107,4 +107,3 @@ export { extractEdges, selectEdges, edgeDirection, edgeInwardDirection, sampleEd
107
107
  export { filletWithManifold } from './fillet';
108
108
  export { pipeAlongPath, pipeAlongPathExtended } from './pipeAlongPath';
109
109
  export { buildWedge } from './wedgeBuilder';
110
- export { default } from './example';
package/dist/index.js CHANGED
@@ -63,4 +63,3 @@ export { extractEdges, selectEdges, edgeDirection, edgeInwardDirection, sampleEd
63
63
  export { filletWithManifold } from './fillet';
64
64
  export { pipeAlongPath, pipeAlongPathExtended } from './pipeAlongPath';
65
65
  export { buildWedge } from './wedgeBuilder';
66
- export { default } from './example';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cadit-app/manifold-fillet",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Fillet and round operations for Manifold meshes",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",