├── .DS_Store ├── .babelrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── algorithm ├── cgal │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── API.h │ ├── Approximate.h │ ├── Bend.h │ ├── Cast.h │ ├── Clip.h │ ├── ComputeArea.h │ ├── ComputeBoundingBox.h │ ├── ComputeCentroid.h │ ├── ComputeImplicitVolume.h │ ├── ComputeNormal.h │ ├── ComputeOrientedBoundingBox.h │ ├── ComputeReliefFromImage.h │ ├── ComputeSkeleton.h │ ├── ComputeToolpath.h │ ├── ComputeVolume.h │ ├── ConvertPolygonsToMeshes.h │ ├── ConvexHull.h │ ├── Cut.h │ ├── Deform.h │ ├── Demesh.h │ ├── DilateXY.h │ ├── Disjoint.h │ ├── EachPoint.h │ ├── EachTriangle.h │ ├── EagerTransform.h │ ├── Edge.h │ ├── Extrude.h │ ├── FaceEdges.h │ ├── Fair.h │ ├── Fill.h │ ├── Fix.h │ ├── FromPolygonSoup.h │ ├── Fuse.h │ ├── GenerateEnvelope.h │ ├── Geometry.h │ ├── Grow.h │ ├── Inset.h │ ├── Involute.h │ ├── Iron.h │ ├── IsExteriorPoint.h │ ├── Join.h │ ├── Link.h │ ├── Loft.h │ ├── Loft2.h │ ├── MakeAbsolute.h │ ├── MakeUnitSphere.h │ ├── MinimizeOverhang.h │ ├── Offset.h │ ├── Outline.h │ ├── Pack.h │ ├── Raycast.h │ ├── Reconstruct.h │ ├── Refine.h │ ├── Remesh.h │ ├── Repair.h │ ├── Route.h │ ├── Seam.h │ ├── Section.h │ ├── Separate.h │ ├── Shell.h │ ├── Simplify.h │ ├── Smooth.h │ ├── Transform.h │ ├── Trim.h │ ├── Twist.h │ ├── Unfold.h │ ├── Validate.h │ ├── Wrap.h │ ├── aabbTreeQuery.js │ ├── approximate.js │ ├── approximate_util.h │ ├── arrangeSegments.js │ ├── arrangement_util.h │ ├── bend.js │ ├── boolean_util.h │ ├── build_browser.sh │ ├── build_browser_dev.sh │ ├── build_node.sh │ ├── build_node_dev.sh │ ├── cast.js │ ├── cast_util.h │ ├── cgalGeometry.js │ ├── cgal_browser.cjs │ ├── cgal_browser.wasm │ ├── cgal_node.cjs │ ├── cgal_node.wasm │ ├── clip.js │ ├── computeArea.js │ ├── computeArea.test.js │ ├── computeBoundingBox.js │ ├── computeCentroid.js │ ├── computeCentroid.test.js │ ├── computeImplicitVolume.js │ ├── computeNormal.js │ ├── computeOrientedBoundingBox.js │ ├── computeReliefFromImage.js │ ├── computeSkeleton.js │ ├── computeToolpath.js │ ├── computeToolpath.test.js │ ├── computeVolume.js │ ├── convert.h │ ├── convertPolygonsToMeshes.js │ ├── convexHull.js │ ├── cut.js │ ├── cut.test.js │ ├── deform.js │ ├── deleteSurfaceMesh.js │ ├── demesh.js │ ├── demesh_util.h │ ├── describeSurfaceMesh.js │ ├── deserializeSurfaceMesh.js │ ├── dilateXY.js │ ├── disjoint.js │ ├── disorient.test.js │ ├── eachPoint.js │ ├── eachTriangle.js │ ├── eagerTransform.js │ ├── emscripten.cc │ ├── emsdk_env.sh │ ├── error.js │ ├── extrude.js │ ├── faceEdges.js │ ├── fair.js │ ├── fill.js │ ├── fill.test.js │ ├── fitPlaneToPoints.js │ ├── fix.js │ ├── fromPointsToConvexHullAsSurfaceMesh.js │ ├── fromPolygonSoup.js │ ├── fromPolygons.js │ ├── fromPolygonsToSurfaceMesh.js │ ├── fuse.js │ ├── fuse.test.js │ ├── generateEnvelope.js │ ├── geometry_util.h │ ├── getCgal.js │ ├── getJotCgalAddon.js │ ├── getWasmCgal.js │ ├── grow.js │ ├── hash_util.h │ ├── image_util.h │ ├── inset.js │ ├── install.sh │ ├── install_cgal.sh │ ├── install_eigen.sh │ ├── install_emscripten.sh │ ├── install_glm.sh │ ├── install_glm_wasm.sh │ ├── install_glpk_native.sh │ ├── install_glpk_wasm.sh │ ├── install_gmp_native.sh │ ├── install_gmp_wasm.sh │ ├── install_jot_cgal_addon.sh │ ├── install_manifold_native.sh │ ├── install_manifold_wasm.sh │ ├── install_mpfr_native.sh │ ├── install_mpfr_wasm.sh │ ├── install_native.sh │ ├── install_wasm.sh │ ├── involute.js │ ├── iron.js │ ├── join.js │ ├── join.test.js │ ├── jot_cgal_addon │ │ ├── binding.gyp │ │ ├── jot_cgal_addon.cc │ │ ├── lib │ │ │ └── binding.js │ │ ├── package-lock.json │ │ └── package.json │ ├── kernel_util.h │ ├── link.js │ ├── loft.js │ ├── loft.test.js │ ├── main.js │ ├── makeAbsolute.js │ ├── makeUnitSphere.js │ ├── manifold_util.h │ ├── minimizeOverhang.js │ ├── minkowskiDifferenceOfSurfaceMeshes.js │ ├── minkowskiShellOfSurfaceMeshes.js │ ├── minkowskiSumOfSurfaceMeshes.js │ ├── mu3d.h │ ├── occt.test.js │ ├── offset.js │ ├── offset_util.h │ ├── outline.js │ ├── outlineSurfaceMesh.js │ ├── outline_util.h │ ├── pack.js │ ├── package.json │ ├── point_util.h │ ├── polygon_util.h │ ├── printing.h │ ├── pushSurfaceMesh.js │ ├── queries.h │ ├── random.h │ ├── random_util.h │ ├── raycast.js │ ├── raycast.test.js │ ├── reconstruct.js │ ├── reconstruct.test.js │ ├── refine.js │ ├── remesh.js │ ├── repair.js │ ├── repair_util.h │ ├── rollup_main.js │ ├── route.js │ ├── seam.js │ ├── section.js │ ├── section.test.js │ ├── segment_util.h │ ├── separate.js │ ├── serialize.js │ ├── serializeSurfaceMesh.js │ ├── shape_util.h │ ├── shell.js │ ├── simplify.js │ ├── simplify_util.h │ ├── smooth.js │ ├── sphere_util.h │ ├── status.js │ ├── surface_mesh_util.h │ ├── symbols.js │ ├── test.cc │ ├── test.sh │ ├── toPathnameFromUrl.js │ ├── toPathnameFromUrl.test.js │ ├── transform.js │ ├── transform.test.js │ ├── transformSurfaceMesh.js │ ├── transform_util.h │ ├── trim.js │ ├── twist.js │ ├── unfold.js │ ├── uninstall.sh │ ├── unit_util.h │ ├── util.h │ ├── validate.js │ ├── validate_util.h │ ├── withIsExteriorPoint.js │ ├── withIsExteriorPoint.test.js │ ├── wrap.js │ └── wrap_util.h ├── color │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── color.js │ ├── color.test.js │ ├── dist │ │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ └── standardColorDefinitions.js ├── contour │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── fromRaster.js │ ├── fromRaster.test.js │ ├── main.js │ ├── package.json │ └── rollup_main.js ├── material │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── main.js │ ├── material.js │ ├── material.test.js │ ├── package.json │ ├── rollup_main.js │ └── standardMaterialDefinitions.js ├── text │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── GreatVibes-Regular.ttf │ ├── OFL.txt │ ├── README.md │ ├── dist │ │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── toFont.js │ └── toFont.test.js ├── threejs │ ├── .babelrc │ ├── ColladaLoader.js │ ├── SVGLoader.js │ ├── TGALoader.js │ ├── main.js │ ├── package.json │ └── rollup_main.js └── tool │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── standardToolDefinitions.js │ ├── tool.js │ └── tool.test.js ├── api ├── core │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── api.js │ ├── control.js │ ├── evaluate.js │ ├── evaluateLock.js │ ├── importModule.js │ ├── main.js │ ├── package.json │ ├── recordNotes.js │ └── rollup_main.js ├── shape │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── Arc.js │ ├── Assembly.js │ ├── Box.js │ ├── Cached.js │ ├── ChainHull.js │ ├── Curve.js │ ├── Edge.js │ ├── Empty.js │ ├── Geometry.js │ ├── Group.js │ ├── Hershey.js │ ├── Hexagon.js │ ├── Hull.js │ ├── Icosahedron.js │ ├── Implicit.js │ ├── Label.js │ ├── Line.js │ ├── Link.js │ ├── List.js │ ├── Loop.js │ ├── Octagon.js │ ├── Orb.js │ ├── Page.js │ ├── Pentagon.js │ ├── Plan.js │ ├── Point.js │ ├── Points.js │ ├── Polygon.js │ ├── Polyhedron.js │ ├── Ref.js │ ├── Segments.js │ ├── Shape.js │ ├── Spiral.js │ ├── Stroke.js │ ├── SurfaceMesh.js │ ├── Triangle.js │ ├── Wave.js │ ├── absolute.js │ ├── abstract.js │ ├── addTo.js │ ├── align.js │ ├── alignment.js │ ├── and.js │ ├── approximate.js │ ├── area.js │ ├── as.js │ ├── asPart.js │ ├── assemble.js │ ├── asyncProxy.test.js │ ├── at.js │ ├── base.js │ ├── bb.js │ ├── bend.js │ ├── billOfMaterials.js │ ├── by.js │ ├── centroid.js │ ├── clean.js │ ├── clip.js │ ├── clipFrom.js │ ├── cloud.js │ ├── color.js │ ├── commonVolume.js │ ├── copy.js │ ├── cut.js │ ├── cutFrom.js │ ├── cutOut.js │ ├── define.js │ ├── deform.js │ ├── demesh.js │ ├── destructure.js │ ├── diameter.js │ ├── dilateXY.js │ ├── disjoint.js │ ├── drop.js │ ├── dxf.js │ ├── each.js │ ├── eachEdge.js │ ├── eachPoint.js │ ├── eachSegment.js │ ├── eagerTransform.js │ ├── edges.js │ ├── exterior.js │ ├── extrude.js │ ├── extrudeAlong.js │ ├── faces.js │ ├── fair.js │ ├── fill.js │ ├── fit.js │ ├── fitTo.js │ ├── fix.js │ ├── flat.js │ ├── fuse.js │ ├── gap.js │ ├── gauge.js │ ├── gcode.js │ ├── get.js │ ├── getAll.js │ ├── getNot.js │ ├── getTag.js │ ├── ghost.js │ ├── grow.js │ ├── hold.js │ ├── holes.js │ ├── image.js │ ├── in.js │ ├── inset.js │ ├── involute.js │ ├── iron.js │ ├── join.js │ ├── ldraw.js │ ├── load.js │ ├── loadGeometry.js │ ├── loft.js │ ├── log.js │ ├── lowerEnvelope.js │ ├── main.js │ ├── mark.js │ ├── maskedBy.js │ ├── masking.js │ ├── material.js │ ├── math.js │ ├── md.js │ ├── minimizeOverhang.js │ ├── minimizeOverhang.md │ ├── move.js │ ├── moveAlong.js │ ├── noGap.js │ ├── noHoles.js │ ├── noOp.js │ ├── normal.js │ ├── note.js │ ├── nth.js │ ├── obb.js │ ├── off.js │ ├── offset.js │ ├── on.js │ ├── op.js │ ├── orient.js │ ├── origin.js │ ├── outline.js │ ├── overlay.js │ ├── pack.js │ ├── package.json │ ├── pdf.js │ ├── png.js │ ├── points.js │ ├── proxy.test.js │ ├── put.js │ ├── random.js │ ├── reconstruct.js │ ├── refine.js │ ├── refs.js │ ├── registerMethod.js │ ├── remesh.js │ ├── repair.js │ ├── rollup_main.js │ ├── route.js │ ├── runLength.js │ ├── rx.js │ ├── ry.js │ ├── rz.js │ ├── save.js │ ├── saveGeometry.js │ ├── scale.js │ ├── scaleToFit.js │ ├── seam.js │ ├── section.js │ ├── separate.js │ ├── seq.js │ ├── serialize.js │ ├── setTag.js │ ├── setTags.js │ ├── shadow.js │ ├── shell.js │ ├── simplify.js │ ├── size.js │ ├── skeleton.js │ ├── sketch.js │ ├── smooth.js │ ├── sort.js │ ├── stl.js │ ├── svg.js │ ├── sx.js │ ├── sy.js │ ├── sz.js │ ├── table.js │ ├── tag.js │ ├── tags.js │ ├── tint.js │ ├── to.js │ ├── toCoordinates.js │ ├── toDisplayGeometry.js │ ├── toGeometry.js │ ├── tool.js │ ├── toolpath.js │ ├── transform.js │ ├── trim.js │ ├── twist.js │ ├── tx.js │ ├── ty.js │ ├── tz.js │ ├── unfold.js │ ├── untag.js │ ├── upperEnvelope.js │ ├── validate.js │ ├── version.js │ ├── view.js │ ├── volume.js │ ├── voxels.js │ ├── wrap.js │ ├── writeShape.js │ ├── x.js │ ├── y.js │ ├── z.js │ └── zag.js ├── threejs │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── main.js │ ├── package.json │ ├── readCollada.js │ ├── readSvg.js │ └── rollup_main.js ├── v1-dst │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── readDst.js │ └── rollup_main.js ├── v1-font │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── readFont.js │ └── rollup_main.js ├── v1-obj │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── fromObj.js │ ├── main.js │ ├── package.json │ ├── readObj.js │ └── rollup_main.js ├── v1-off │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── fromOff.js │ ├── main.js │ ├── package.json │ ├── readOff.js │ └── rollup_main.js ├── v1-shapefile │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── readShapefile.js │ └── rollup_main.js ├── v1-shapes │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ └── nb │ │ ├── shapes.difference.png │ │ ├── shapes.md │ │ ├── shapes.md.1.png │ │ ├── shapes.md.10.png │ │ ├── shapes.md.11.png │ │ ├── shapes.md.12.png │ │ ├── shapes.md.13.png │ │ ├── shapes.md.14.png │ │ ├── shapes.md.15.png │ │ ├── shapes.md.16.png │ │ ├── shapes.md.17.png │ │ ├── shapes.md.18.png │ │ ├── shapes.md.19.png │ │ ├── shapes.md.2.png │ │ ├── shapes.md.20.png │ │ ├── shapes.md.21.png │ │ ├── shapes.md.22.png │ │ ├── shapes.md.23.png │ │ ├── shapes.md.24.png │ │ ├── shapes.md.25.png │ │ ├── shapes.md.26.png │ │ ├── shapes.md.27.png │ │ ├── shapes.md.28.png │ │ ├── shapes.md.29.png │ │ ├── shapes.md.3.png │ │ ├── shapes.md.4.png │ │ ├── shapes.md.5.png │ │ ├── shapes.md.6.png │ │ ├── shapes.md.7.png │ │ ├── shapes.md.8.png │ │ ├── shapes.md.9.png │ │ └── shapes.png ├── v1-threejs │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ └── writeThreejsPage.js └── v1-tools │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── carve.js │ ├── main.js │ ├── package.json │ └── rollup_main.js ├── ava.config.js ├── cache ├── .babelrc ├── .eslintrc.cjs ├── README.md ├── cache.js ├── cache.test.js ├── dist │ └── .gitignore ├── main.js ├── package.json └── rollup_main.js ├── cli ├── .babelrc ├── .eslintrc.cjs ├── cli.js ├── package.json └── simplify.sh ├── compiler ├── .babelrc ├── .eslintignore ├── .eslintrc.cjs ├── astring.js ├── dist │ └── .gitignore ├── flow.js ├── flow.test.js ├── main.js ├── molecule-expected.flow ├── molecule-expected.js ├── molecule-full-expected.js ├── molecule-full.json ├── molecule.json ├── molecules.js ├── molecules.test.js ├── package.json ├── rewrite.js ├── rewrite.test.js ├── rollup_main.js ├── toEcmascript.js ├── toEcmascript.test.js ├── toEcmascriptExport.test.js ├── toEcmascriptUpdate.test.js ├── toGraph.js └── toGraph.test-disabled.js ├── convert ├── dst │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── README.md │ ├── dist │ │ └── .gitignore │ ├── dst.js │ ├── fromDst.js │ ├── fromDst.test.js │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ └── test.dst ├── dxf │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── fromDxf.js │ ├── fromDxf.test.js │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── toDxf.js │ ├── toDxf.test.js │ └── toDxf.test.triangle.dxf ├── gcode │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── constant_laser.gcode │ ├── dist │ │ └── .gitignore │ ├── dynamic_laser.gcode │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── spindle_triangle.gcode │ ├── tags.gcode │ ├── toGcode.js │ └── toGcode.test.js ├── ldraw │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── fromLDraw.js │ ├── fromLDraw.test.js │ ├── ldraw │ │ ├── 48 │ │ │ ├── 1-4cyli.dat │ │ │ └── 1-4edge.dat │ │ ├── 3024.dat │ │ ├── 4-4cyli.dat │ │ ├── 4-4disc.dat │ │ ├── 4-4edge.dat │ │ ├── box5.dat │ │ └── stud.dat │ ├── main.js │ ├── package.json │ └── rollup_main.js ├── notebook │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── toHtml.dynamic.test.html │ ├── toHtml.js │ ├── toHtml.test.html │ └── toHtml.test.js ├── obj │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── fromObj.js │ ├── fromObj.test.js │ ├── main.js │ ├── package.json │ └── rollup_main.js ├── off │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── fromOff.js │ ├── fromOff.test.js │ ├── main.js │ ├── package.json │ └── rollup_main.js ├── pdf │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── README.md │ ├── dist │ │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ └── toPdf.js ├── png │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── dist │ │ └── .gitignore │ ├── fromPng.js │ ├── fromPng.test.js │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── test.png │ └── toPng.js ├── shapefile │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── boolean-property.dbf │ ├── boolean-property.shp │ ├── dist │ │ └── .gitignore │ ├── fromShapefile.js │ ├── fromShapefile.test-disabled.js │ ├── main.js │ ├── package.json │ └── rollup_main.js ├── stl │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── README.md │ ├── dist │ │ └── .gitignore │ ├── fromStl.js │ ├── fromStl.test.box.stl │ ├── fromStl.test.js │ ├── main.js │ ├── package.json │ ├── parseStlBinary.js │ ├── rollup_main.js │ ├── toStl.js │ ├── toStl.test.box.stl │ └── toStl.test.js ├── svg │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── README.md │ ├── buildAdaptiveCubicBezierCurve.js │ ├── curvify-svg-path │ │ ├── README.md │ │ ├── arc-to-curves.js │ │ └── index.js │ ├── dist │ │ └── .gitignore │ ├── fromSvg.js │ ├── fromSvg.test.js │ ├── fromSvgPath.js │ ├── fromSvgPath.test.js │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── shape.test.js │ ├── ship.svg │ ├── test.circle.pdf │ ├── test.circle.svg │ ├── test.circle_with_hole_path.svg │ ├── test.closed_path.svg │ ├── test.complex.pdf │ ├── test.complex.svg │ ├── test.ellipse.pdf │ ├── test.ellipse.svg │ ├── test.open_path.svg │ ├── test.polygon.pdf │ ├── test.polygon.svg │ ├── test.polyline.pdf │ ├── test.polyline.svg │ ├── test.rectangle.pdf │ ├── test.rectangle.svg │ ├── test.rounded-rectangle.pdf │ ├── test.rounded-rectangle.svg │ ├── test.triangle.pdf │ ├── test.triangle.svg │ └── toSvg.js └── threejs │ ├── .babelrc │ ├── .eslintignore │ ├── .eslintrc.cjs │ ├── README.md │ ├── color.js │ ├── dist │ └── .gitignore │ ├── duck_triangles.dae │ ├── duck_triangles.json │ ├── fromColladaToThreejs.js │ ├── fromColladaToThreejs.test.js │ ├── fromSvgToThreejs.js │ ├── fromSvgToThreejs.test.js │ ├── fromThreejsToGeometry.js │ ├── layers.js │ ├── main.js │ ├── material.js │ ├── mesh.js │ ├── moveToFit.js │ ├── package.json │ ├── renderPng.js │ ├── rollup_main.js │ ├── scene.js │ ├── staticDisplay.js │ ├── toThreejsGeometry.js │ ├── toThreejsPage.js │ ├── toThreejsPage.test.html │ └── toThreejsPage.test.js ├── data └── shape │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── README.md │ ├── dist │ └── .gitignore │ ├── main.js │ ├── package.json │ ├── rollup_main.js │ ├── unit.test.js │ ├── unitCube.js │ ├── unitGeodesicSphere.js │ ├── unitRegularIcosahedron.js │ ├── unitRegularTetrahedron.js │ ├── unitRegularTriangle.js │ ├── unitRegularTriangularPrism.js │ └── unitSquare.js ├── doc ├── .babelrc ├── .eslintrc.cjs ├── package.json ├── screenshot.js ├── update.js └── updateNotebook.js ├── es6 ├── cgal_browser.wasm ├── jsxcad-algorithm-cgal.js ├── jsxcad-algorithm-color.js ├── jsxcad-algorithm-contour.js ├── jsxcad-algorithm-material.js ├── jsxcad-algorithm-pack.js ├── jsxcad-algorithm-text.js ├── jsxcad-algorithm-threejs.js ├── jsxcad-algorithm-tool.js ├── jsxcad-algorithm-verlet.js ├── jsxcad-api-shape.js ├── jsxcad-api-threejs.js ├── jsxcad-api-v1-armature.js ├── jsxcad-api-v1-cursor.js ├── jsxcad-api-v1-dst.js ├── jsxcad-api-v1-dxf.js ├── jsxcad-api-v1-font.js ├── jsxcad-api-v1-gcode.js ├── jsxcad-api-v1-ldraw.js ├── jsxcad-api-v1-math.js ├── jsxcad-api-v1-obj.js ├── jsxcad-api-v1-off.js ├── jsxcad-api-v1-pdf.js ├── jsxcad-api-v1-png.js ├── jsxcad-api-v1-shapefile.js ├── jsxcad-api-v1-stl.js ├── jsxcad-api-v1-svg.js ├── jsxcad-api-v1-threejs.js ├── jsxcad-api-v1-tools.js ├── jsxcad-api-v1-units.js ├── jsxcad-api.js ├── jsxcad-cache.js ├── jsxcad-compiler.js ├── jsxcad-convert-dst.js ├── jsxcad-convert-dxf.js ├── jsxcad-convert-gcode.js ├── jsxcad-convert-ldraw.js ├── jsxcad-convert-notebook.js ├── jsxcad-convert-obj.js ├── jsxcad-convert-off.js ├── jsxcad-convert-pdf.js ├── jsxcad-convert-png.js ├── jsxcad-convert-shapefile.js ├── jsxcad-convert-stl.js ├── jsxcad-convert-svg.js ├── jsxcad-convert-threejs.js ├── jsxcad-data-shape.js ├── jsxcad-geometry.js ├── jsxcad-math-line2.js ├── jsxcad-math-line3.js ├── jsxcad-math-mat4.js ├── jsxcad-math-plane.js ├── jsxcad-math-poly3.js ├── jsxcad-math-utils.js ├── jsxcad-math-vec2.js ├── jsxcad-math-vec3.js ├── jsxcad-math-vec4.js ├── jsxcad-sys.js ├── jsxcad-ui-app-standalone.js ├── jsxcad-ui-app-webworker.js ├── jsxcad-ui-app.js ├── jsxcad-ui-notebook.js ├── jsxcad-ui-threejs.js ├── jsxcad-ui-v1-webworker.js └── jsxcad-ui-v1.js ├── geometry ├── .babelrc ├── .eslintrc.cjs ├── Arc.js ├── Box.js ├── Curve.js ├── Edge.js ├── Empty.js ├── Group.js ├── Hershey.js ├── Icosahedron.js ├── Orb.js ├── Page.js ├── Point.js ├── Ref.js ├── Segment.js ├── Segments.js ├── abstract.js ├── align.js ├── alignment.js ├── and.js ├── approximate.js ├── at.js ├── base.js ├── bb.js ├── bend.js ├── by.js ├── cast.js ├── clip.js ├── cloud.js ├── computeCentroid.js ├── computeGeneralizedDiameter.js ├── computeImplicitVolume.js ├── computeNormal.js ├── computeOrientedBoundingBox.js ├── computeReliefFromImage.js ├── computeSkeleton.js ├── computeToolpath.js ├── convertPolygonsToMeshes.js ├── convexHull.js ├── copy.js ├── corners.js ├── cut.js ├── deform.js ├── demesh.js ├── dilateXY.js ├── disjoint.js ├── disorientSegment.js ├── drop.js ├── each.js ├── eachApproximateTriangle.js ├── eachEdge.js ├── eachFaceEdges.js ├── eachPoint.js ├── eachSegment.js ├── eachTriangle.js ├── eagerTransform.js ├── extrude.js ├── fair.js ├── fill.js ├── fix.js ├── flat.js ├── fromPolygonSoup.js ├── fromPolygons.js ├── fuse.js ├── gap.js ├── gauge.js ├── generateLowerEnvelope.js ├── generateUpperEnvelope.js ├── get.js ├── ghost.js ├── grow.js ├── hasColor.js ├── hasMaterial.js ├── hasTags.js ├── hold.js ├── inItem.js ├── inset.js ├── involute.js ├── iron.js ├── join.js ├── label.js ├── link.js ├── loft.js ├── log.js ├── main.js ├── makeAbsolute.js ├── maskedBy.js ├── masking.js ├── measureBoundingBox.js ├── minimizeOverhang.js ├── moveAlong.js ├── noGhost.js ├── note.js ├── nth.js ├── offset.js ├── on.js ├── orient.js ├── origin.js ├── outline.js ├── pack.js ├── package.json ├── reconstruct.js ├── refine.js ├── remesh.js ├── render.js ├── repair.js ├── rollup_main.js ├── rotate.js ├── route.js ├── scale.js ├── seam.js ├── section.js ├── separate.js ├── seq.js ├── serialize.js ├── shell.js ├── sides.js ├── simplify.js ├── smooth.js ├── tag.js ├── tagged │ ├── .gitignore │ ├── README.md │ ├── allTags.js │ ├── allTags.test.js │ ├── assemble.js │ ├── cached.js │ ├── computeToolpath.js │ ├── dist │ │ └── .gitignore │ ├── drop.js │ ├── drop.test.js │ ├── eachItem.js │ ├── eachNonVoidItem.js │ ├── fresh.js │ ├── generatePackingEnvelope.js │ ├── getAnyNonVoidSurfaces.js │ ├── getAnySurfaces.js │ ├── getGraphs.js │ ├── getInverseMatrices.js │ ├── getItems.js │ ├── getLayouts.js │ ├── getLeafs.js │ ├── getLeafsIn.js │ ├── getNonVoidGraphs.js │ ├── getNonVoidItems.js │ ├── getNonVoidLeafs.js │ ├── getNonVoidPlans.js │ ├── getNonVoidPoints.js │ ├── getNonVoidPolygonsWithHoles.js │ ├── getNonVoidSegments.js │ ├── getPlans.js │ ├── getPoints.js │ ├── getTags.js │ ├── hasMatchingTag.js │ ├── hash.js │ ├── isNotVoid.js │ ├── keep.js │ ├── keep.test.js │ ├── linearize.js │ ├── load.js │ ├── loft.js │ ├── measureArea.js │ ├── measureVolume.js │ ├── minkowskiDifference.js │ ├── minkowskiShell.js │ ├── minkowskiSum.js │ ├── op.js │ ├── pointNormalizer.js │ ├── prepareGraphForSerialization.js │ ├── read.js │ ├── registerReifier.js │ ├── reify.js │ ├── remesh.js │ ├── removeSelfIntersections.js │ ├── rewriteTags.js │ ├── rewriteTags.test.js │ ├── rollup_main.js │ ├── serialize.js │ ├── show.js │ ├── simplify.js │ ├── smooth.js │ ├── soup.js │ ├── store.js │ ├── store.test.js │ ├── taggedDisplayGeometry.js │ ├── taggedGraph.js │ ├── taggedGroup.js │ ├── taggedItem.js │ ├── taggedLayout.js │ ├── taggedPlan.js │ ├── taggedPoints.js │ ├── taggedPolygons.js │ ├── taggedPolygonsWithHoles.js │ ├── taggedSegments.js │ ├── taggedSketch.js │ ├── taggedToolpath.js │ ├── taggedTriangles.js │ ├── taper.js │ ├── toApproximateGeometry.js │ ├── toConcreteGeometry.js │ ├── toDisplayGeometry.js │ ├── toGraphList.js │ ├── toTransformedGeometry.js │ ├── toTriangleArray.js │ ├── toTriangles.js │ ├── transform.js │ ├── twist.js │ ├── type.js │ ├── type.test.js │ ├── update.js │ ├── visit.js │ ├── wireframe.js │ └── write.js ├── to.js ├── toCoordinates.js ├── toPoints.js ├── transform.js ├── translate.js ├── trim.js ├── turn.js ├── twist.js ├── unfold.js ├── validate.js ├── vector.js ├── voxels.js └── wrap.js ├── lerna.json ├── nb ├── api │ ├── Arc.md │ ├── Arc.md.$2_1.png │ ├── Arc.md.$3.png │ ├── Arc.md.$4.png │ ├── Arc.md.$5.png │ ├── Arc.md.$6_1.png │ ├── Arc.nb │ ├── Assembly.md │ ├── Assembly.md.$2_1.png │ ├── Assembly.md.$2_2.png │ ├── Assembly.nb │ ├── Cached.md │ ├── Cached.md.$2.png │ ├── Cached.nb │ ├── ChainHull.md │ ├── ChainHull.md.$2.png │ ├── ChainHull.nb │ ├── Curve.md │ ├── Curve.md.$2_1.png │ ├── Curve.md.$2_2.png │ ├── Curve.nb │ ├── Edge.md │ ├── Edge.md.$2_1.png │ ├── Edge.md.$3_1.png │ ├── Edge.nb │ ├── Empty.md │ ├── Empty.nb │ ├── Face.md │ ├── Face.md.$2.png │ ├── Face.md.$3.png │ ├── Face.md.$4.png │ ├── Face.nb │ ├── Group.md │ ├── Group.md.$2.png │ ├── Group.nb │ ├── Hershey.md │ ├── Hershey.md.$2.png │ ├── Hershey.nb │ ├── Hexagon.md │ ├── Hexagon.md.$2.png │ ├── Hexagon.md.$3.png │ ├── Hexagon.nb │ ├── Hull.md │ ├── Hull.md.$2.png │ ├── Hull.md.$3.png │ ├── Hull.nb │ ├── Icosahedron.md │ ├── Icosahedron.md.$2.png │ ├── Icosahedron.md.$3.png │ ├── Icosahedron.nb │ ├── Implicit.md │ ├── Implicit.md.$2.png │ ├── Implicit.nb │ ├── Join.md │ ├── Join.md.$2.png │ ├── Join.md.$3.png │ ├── Join.nb │ ├── Line.md │ ├── Line.md.$2.png │ ├── Line.md.$3.png │ ├── Line.md.$4.png │ ├── Line.md.$5.png │ ├── Line.nb │ ├── Link.md │ ├── Link.md.$2.png │ ├── Link.md.$3.png │ ├── Link.nb │ ├── LoadPng.md │ ├── LoadPng.md.$2.png │ ├── LoadPng.nb │ ├── LoadStl.md │ ├── LoadStl.md.$2.png │ ├── LoadStl.nb │ ├── LoadSvg.md │ ├── LoadSvg.md.$2.png │ ├── LoadSvg.nb │ ├── Loop.md │ ├── Loop.md.$2.png │ ├── Loop.md.$3.png │ ├── Loop.nb │ ├── Octagon.md │ ├── Octagon.md.$2.png │ ├── Octagon.md.$3.png │ ├── Octagon.nb │ ├── Orb.md │ ├── Orb.md.$2.png │ ├── Orb.md.$3.png │ ├── Orb.md.$4_1.png │ ├── Orb.md.$5_2.png │ ├── Orb.nb │ ├── Page.md │ ├── Pentagon.md │ ├── Pentagon.md.$2.png │ ├── Pentagon.md.$3.png │ ├── Pentagon.nb │ ├── Point.md │ ├── Point.md.$2.png │ ├── Point.nb │ ├── Points.md │ ├── Points.md.$2.png │ ├── Points.nb │ ├── Polygon.md │ ├── Polygon.md.$2.png │ ├── Polygon.nb │ ├── Polyhedron.md │ ├── Polyhedron.md.$2_1.png │ ├── Polyhedron.md.$3.png │ ├── Polyhedron.nb │ ├── Ref.md │ ├── Ref.md.$2.png │ ├── Ref.nb │ ├── Route.md │ ├── Route.nb │ ├── Segments.md │ ├── Segments.md.$2.png │ ├── Segments.nb │ ├── Skeleton.md │ ├── Spiral.md │ ├── Spiral.md.$2.png │ ├── Spiral.md.$3.png │ ├── Spiral.md.$4.png │ ├── Spiral.nb │ ├── SurfaceMesh.md │ ├── SurfaceMesh.md.$2.png │ ├── SurfaceMesh.nb │ ├── Triangle.md │ ├── Triangle.md.$2.png │ ├── Triangle.md.$3.png │ ├── Triangle.md.$4.png │ ├── Triangle.nb │ ├── Wave.md │ ├── Wave.md.$2.png │ ├── Wave.nb │ ├── absolute.md │ ├── absolute.md.$2_1.png │ ├── absolute.md.$2_2.png │ ├── absolute.md.$2_3.png │ ├── absolute.md.$2_4.png │ ├── absolute.nb │ ├── abstract.md │ ├── abstract.nb │ ├── addTo.md │ ├── addTo.md.$2.png │ ├── addTo.md.$3.png │ ├── addTo.nb │ ├── align.md │ ├── align.md.$2.png │ ├── align.md.$3.png │ ├── align.md.$4.png │ ├── align.md.$5.png │ ├── align.md.$6.png │ ├── align.md.$7.png │ ├── align.nb │ ├── and.md │ ├── and.md.$2.png │ ├── and.nb │ ├── area.md │ ├── area.md.$2.png │ ├── area.md.$3.png │ ├── area.nb │ ├── as.md │ ├── as.md.$2_1.png │ ├── as.md.$2_2.png │ ├── as.nb │ ├── asPart.md │ ├── asPart.md.$2.png │ ├── asPart.nb │ ├── at.md │ ├── at.md.$2_1.png │ ├── at.md.$2_2.png │ ├── at.nb │ ├── bb.md │ ├── bb.md.$2.png │ ├── bb.md.$3.png │ ├── bb.nb │ ├── bend.md │ ├── bend.md.$2.png │ ├── bend.md.$3.png │ ├── bend.md.$4.png │ ├── bend.md.$5.png │ ├── bend.md.$6.png │ ├── bend.nb │ ├── bom.md │ ├── bom.md.$2.png │ ├── bom.nb │ ├── by.md │ ├── by.md.$2_1.png │ ├── by.md.$2_2.png │ ├── by.nb │ ├── center.md │ ├── centroid.md │ ├── centroid.md.$2.png │ ├── centroid.md.$3.png │ ├── centroid.md.$4.png │ ├── centroid.nb │ ├── clean.md │ ├── clean.md.$2_1.png │ ├── clean.md.$2_2.png │ ├── clean.md.$3_1.png │ ├── clean.md.$3_2.png │ ├── clean.nb │ ├── clip.md │ ├── clip.md.$2.png │ ├── clip.md.$3.png │ ├── clip.md.$4.png │ ├── clip.md.$5.png │ ├── clip.md.$6.png │ ├── clip.nb │ ├── clipFrom.md │ ├── clipFrom.md.$2.png │ ├── clipFrom.md.$3.png │ ├── clipFrom.nb │ ├── color.md │ ├── color.md.$2.png │ ├── color.md.$3_1.png │ ├── color.md.$3_2.png │ ├── color.nb │ ├── cut.md │ ├── cut.md.$2.png │ ├── cut.md.$3.png │ ├── cut.md.$4.png │ ├── cut.nb │ ├── cutFrom.md │ ├── cutFrom.md.$2.png │ ├── cutFrom.md.$3.png │ ├── cutFrom.nb │ ├── cutOut.md │ ├── cutOut.md.$2.png │ ├── cutOut.nb │ ├── deform.md │ ├── deform.md.$2_1.png │ ├── deform.nb │ ├── demesh.md │ ├── demesh.md.$2_1.png │ ├── demesh.md.$2_2.png │ ├── demesh.nb │ ├── diameter.md │ ├── diameter.nb │ ├── disjoint.md │ ├── disjoint.md.$2_1.png │ ├── disjoint.md.$2_2.png │ ├── disjoint.md.$2_3.png │ ├── disjoint.md.$2_4.png │ ├── disjoint.nb │ ├── drop.md │ ├── drop.md.$2_1.png │ ├── drop.md.$2_2.png │ ├── drop.md.$2_3.png │ ├── drop.nb │ ├── e.md │ ├── e.md.$2.png │ ├── e.nb │ ├── each.md │ ├── each.md.$2_1.png │ ├── each.md.$2_2.png │ ├── each.nb │ ├── eachEdge.md │ ├── eachEdge.md.$2.png │ ├── eachEdge.md.$3.png │ ├── eachEdge.md.$4.png │ ├── eachEdge.nb │ ├── eachPoint.md │ ├── eachPoint.md.$2.png │ ├── eachPoint.md.$3.png │ ├── eachPoint.nb │ ├── edges.md │ ├── edges.md.$2.png │ ├── edges.md.$3.png │ ├── edges.nb │ ├── ex.md │ ├── ex.md.$2.png │ ├── ex.nb │ ├── extrudeAlong.md │ ├── extrudeAlong.md.$2.png │ ├── extrudeAlong.md.$3.png │ ├── extrudeAlong.md.$4.png │ ├── extrudeAlong.md.$5.png │ ├── extrudeAlong.md.$6.png │ ├── extrudeAlong.md.$7.png │ ├── extrudeAlong.md.$8.png │ ├── extrudeAlong.nb │ ├── ey.md │ ├── ey.md.$2.png │ ├── ey.nb │ ├── ez.md │ ├── ez.md.$2.png │ ├── ez.nb │ ├── f.md │ ├── f.md.$2.png │ ├── f.md.$3.png │ ├── f.nb │ ├── faces.md │ ├── faces.md.$2.png │ ├── faces.md.$3.png │ ├── faces.md.$4.png │ ├── faces.nb │ ├── fair.md │ ├── fair.md.$2.png │ ├── fair.nb │ ├── fill.md │ ├── fill.md.$2.png │ ├── fill.md.$3.png │ ├── fill.md.$4.png │ ├── fill.nb │ ├── fit.md │ ├── fit.md.$2_1.png │ ├── fit.md.$2_2.png │ ├── fit.nb │ ├── fitTo.md │ ├── fitTo.md.$2_1.png │ ├── fitTo.md.$2_2.png │ ├── fitTo.nb │ ├── flat.md │ ├── flat.md.$2_1.png │ ├── flat.md.$2_2.png │ ├── flat.md.$2_3.png │ ├── flat.nb │ ├── fuse.md │ ├── fuse.md.$2_1.png │ ├── fuse.md.$2_2.png │ ├── fuse.nb │ ├── gauge.md │ ├── gauge.md.$2.png │ ├── gauge.md.$3.png │ ├── gauge.nb │ ├── get.md │ ├── get.md.$2.png │ ├── get.md.$3.png │ ├── get.md.$4.png │ ├── get.md.design_1.png │ ├── get.nb │ ├── getNot.md │ ├── getNot.md.$2.png │ ├── getNot.md.$3.png │ ├── getNot.md.$4.png │ ├── getNot.md.design_1.png │ ├── getNot.nb │ ├── ghost.md │ ├── ghost.md.$2_1.png │ ├── ghost.md.$2_2.png │ ├── ghost.nb │ ├── grow.md │ ├── grow.md.$2.png │ ├── grow.md.$3.png │ ├── grow.md.$4.png │ ├── grow.md.$5.png │ ├── grow.md.$6.png │ ├── grow.md.$7.png │ ├── grow.nb │ ├── image.md │ ├── image.md.$2.png │ ├── image.md.$3.png │ ├── image.nb │ ├── in.md │ ├── in.md.$2.png │ ├── in.nb │ ├── index.md │ ├── index.nb │ ├── inset.md │ ├── inset.md.$2.png │ ├── inset.md.$3.png │ ├── inset.nb │ ├── involute.md │ ├── involute.md.$2.png │ ├── involute.md.$3.png │ ├── involute.nb │ ├── iron.md │ ├── iron.md.$2.png │ ├── iron.nb │ ├── join.md │ ├── join.md.$2.png │ ├── join.md.$3.png │ ├── join.nb │ ├── link.md │ ├── link.md.$2.png │ ├── link.nb │ ├── loft.md │ ├── loft.md.$2.png │ ├── loft.md.$3.png │ ├── loft.nb │ ├── log.md │ ├── log.nb │ ├── loop.md │ ├── loop.md.$2.png │ ├── loop.nb │ ├── lowerEnvelope.md │ ├── lowerEnvelope.md.$2.png │ ├── lowerEnvelope.nb │ ├── m.md │ ├── m.md.$2.png │ ├── m.nb │ ├── mask.md │ ├── masked.md │ ├── masked.md.$2.png │ ├── masked.nb │ ├── masking.md │ ├── masking.md.$2.png │ ├── masking.nb │ ├── material.md │ ├── material.md.$10.png │ ├── material.md.$11.png │ ├── material.md.$12.png │ ├── material.md.$13.png │ ├── material.md.$14.png │ ├── material.md.$15.png │ ├── material.md.$16.png │ ├── material.md.$17.png │ ├── material.md.$18.png │ ├── material.md.$19.png │ ├── material.md.$2.png │ ├── material.md.$20.png │ ├── material.md.$3.png │ ├── material.md.$4.png │ ├── material.md.$5.png │ ├── material.md.$6.png │ ├── material.md.$7.png │ ├── material.md.$8.png │ ├── material.md.$9.png │ ├── material.nb │ ├── md.md │ ├── md.nb │ ├── minimizeOverhang.md │ ├── minimizeOverhang.md.$2.png │ ├── minimizeOverhang.md.$3.png │ ├── minimizeOverhang.nb │ ├── move.md │ ├── move.md.$2.png │ ├── move.md.$3.png │ ├── move.nb │ ├── moveAlong.md │ ├── moveAlong.md.$2.png │ ├── moveAlong.md.$3.png │ ├── moveAlong.nb │ ├── n.md │ ├── n.md.$2_1.png │ ├── n.md.$2_2.png │ ├── n.nb │ ├── noOp.md │ ├── noOp.md.$2.png │ ├── noOp.nb │ ├── noVoid.md │ ├── noVoid.md.$2_1.png │ ├── noVoid.md.$2_2.png │ ├── noVoid.nb │ ├── normal.md │ ├── normal.md.$2.png │ ├── normal.md.$3.png │ ├── normal.nb │ ├── note.md │ ├── note.md.$2.png │ ├── note.nb │ ├── nth.md │ ├── nth.md.$2_1.png │ ├── nth.md.$2_2.png │ ├── nth.nb │ ├── offset.md │ ├── offset.md.$2.png │ ├── offset.md.$3.png │ ├── offset.nb │ ├── on.md │ ├── on.md.$2_1.png │ ├── on.md.$2_2.png │ ├── on.md.$2_3.png │ ├── on.nb │ ├── op.md │ ├── op.md.$2.png │ ├── op.nb │ ├── origin.md │ ├── origin.md.$2.png │ ├── origin.nb │ ├── outline.md │ ├── outline.md.$2.png │ ├── outline.nb │ ├── overlay.md │ ├── overlay.md.$2.png │ ├── overlay.nb │ ├── pack.md │ ├── pack.md.$2.png │ ├── pack.md.$3.png │ ├── pack.nb │ ├── page.md │ ├── png.md │ ├── png.md.$2.png │ ├── png.md.$3_icosahedron.png │ ├── png.nb │ ├── points.md │ ├── points.md.$2.png │ ├── points.md.$3.png │ ├── points.nb │ ├── random.md │ ├── remesh.md │ ├── remesh.md.$2.png │ ├── remesh.md.$3.png │ ├── remesh.md.$4.png │ ├── remesh.nb │ ├── route.md │ ├── route.nb │ ├── scale.md │ ├── scale.md.$2.png │ ├── scale.md.$3.png │ ├── scale.md.$4.png │ ├── scale.md.$5.png │ ├── scale.md.$6.png │ ├── scale.md.$7.png │ ├── scale.nb │ ├── scaleToFit.md │ ├── scaleToFit.md.$2.png │ ├── scaleToFit.md.$3.png │ ├── scaleToFit.nb │ ├── seam.md │ ├── seam.md.$2.png │ ├── seam.md.$3.png │ ├── seam.nb │ ├── section.md │ ├── section.md.$2.png │ ├── section.md.$3.png │ ├── section.nb │ ├── separate.md │ ├── separate.md.$2_1.png │ ├── separate.md.$2_2.png │ ├── separate.md.$3_1.png │ ├── separate.md.$3_3.png │ ├── separate.nb │ ├── seq.md │ ├── seq.md.$2.png │ ├── seq.md.$3.png │ ├── seq.md.$4.png │ ├── seq.nb │ ├── shadow.md │ ├── shadow.md.$2_8.png │ ├── shadow.md.$3_8.png │ ├── shadow.md.$4_8.png │ ├── shadow.nb │ ├── simplify.md │ ├── simplify.md.$2_1.png │ ├── simplify.md.$2_2.png │ ├── simplify.nb │ ├── size.md │ ├── size.md.$2.png │ ├── size.md.$3.png │ ├── size.md.$4.png │ ├── size.nb │ ├── skeleton.md │ ├── sketch.md │ ├── sketch.md.$2.png │ ├── sketch.nb │ ├── smooth.md │ ├── smooth.md.$2.png │ ├── smooth.md.$3.png │ ├── smooth.nb │ ├── sort.md │ ├── sort.md.$2.png │ ├── sort.md.$3.png │ ├── sort.md.$4.png │ ├── sort.nb │ ├── sx.md │ ├── sx.md.$2.png │ ├── sx.nb │ ├── sy.md │ ├── sy.md.$2.png │ ├── sy.nb │ ├── sz.md │ ├── sz.md.$2.png │ ├── sz.nb │ ├── table.md │ ├── table.nb │ ├── tag.md │ ├── tag.md.$3.png │ ├── tag.md.$4.png │ ├── tag.nb │ ├── tags.md │ ├── tags.nb │ ├── tint.md │ ├── tint.md.$2_1.png │ ├── tint.md.$2_2.png │ ├── tint.nb │ ├── to.md │ ├── to.md.$2.png │ ├── to.nb │ ├── toolpath.md │ ├── toolpath.nb │ ├── trim.md │ ├── trim.md.$2.png │ ├── trim.md.$3.png │ ├── trim.md.$4.png │ ├── trim.md.$5.png │ ├── trim.md.$6.png │ ├── trim.md.$7.png │ ├── trim.nb │ ├── twist.md │ ├── twist.md.$2.png │ ├── twist.nb │ ├── unfold.md │ ├── unfold.md.$2.png │ ├── unfold.md.$3.png │ ├── unfold.nb │ ├── untag.md │ ├── untag.md.$2_1.png │ ├── untag.md.$2_2.png │ ├── untag.nb │ ├── upperEnvelope.md │ ├── upperEnvelope.md.$2.png │ ├── upperEnvelope.nb │ ├── view.md │ ├── view.md.$2.png │ ├── view.md.$3.png │ ├── view.md.$4.png │ ├── view.md.$5.png │ ├── view.md.$6.png │ ├── view.md.$7.png │ ├── view.nb │ ├── void.md │ ├── void.md.$2.png │ ├── void.nb │ ├── volume.md │ ├── volume.nb │ ├── voxels.md │ ├── voxels.md.$2.png │ ├── voxels.nb │ ├── wrap.md │ ├── wrap.md.$2.png │ ├── wrap.nb │ ├── x.md │ ├── x.md.$2.png │ ├── x.nb │ ├── y.md │ ├── y.md.$2.png │ ├── y.nb │ ├── z.md │ ├── z.md.$2.png │ └── z.nb ├── components │ ├── shaft.md │ ├── shaft.md.$2.png │ ├── shaft.md.$3.png │ ├── shaft.md.$4.png │ └── shaft.nb ├── documentation │ ├── creating_geometry │ │ ├── creating_geometry.md │ │ ├── creating_geometry.md.$11.png │ │ ├── creating_geometry.md.$12.png │ │ ├── creating_geometry.md.$14.png │ │ ├── creating_geometry.md.$16.png │ │ ├── creating_geometry.md.$18.png │ │ ├── creating_geometry.md.$20.png │ │ ├── creating_geometry.md.$21.png │ │ ├── creating_geometry.md.$23.png │ │ ├── creating_geometry.md.$25.png │ │ ├── creating_geometry.md.$27.png │ │ ├── creating_geometry.md.$28.png │ │ ├── creating_geometry.md.$3.png │ │ ├── creating_geometry.md.$30.png │ │ ├── creating_geometry.md.$32.png │ │ ├── creating_geometry.md.$34.png │ │ ├── creating_geometry.md.$35.png │ │ ├── creating_geometry.md.$37.png │ │ ├── creating_geometry.md.$4.png │ │ ├── creating_geometry.md.$6.png │ │ ├── creating_geometry.md.$7.png │ │ ├── creating_geometry.md.$9.png │ │ ├── creating_geometry.md.aCircle.png │ │ ├── creating_geometry.md.aCircleWithSides.png │ │ ├── creating_geometry.md.aCircleWithZag.png │ │ ├── creating_geometry.md.anElipseExtruded.png │ │ └── creating_geometry.nb │ ├── file_import_and_export │ │ ├── file_import_and_export.fileName.svg │ │ ├── file_import_and_export.fileName_0.stl │ │ ├── file_import_and_export.md │ │ ├── file_import_and_export.md.$4_fileName.png │ │ ├── file_import_and_export.md.$6_fileName.png │ │ ├── file_import_and_export.md.importedStl_teapot.png │ │ └── file_import_and_export.nb │ ├── index.md │ ├── index.nb │ ├── interactions_between_geometry │ │ ├── interactions_between_geometry.md │ │ ├── interactions_between_geometry.md.$11.png │ │ ├── interactions_between_geometry.md.$12.png │ │ ├── interactions_between_geometry.md.$14.png │ │ ├── interactions_between_geometry.md.$15.png │ │ ├── interactions_between_geometry.md.$17.png │ │ ├── interactions_between_geometry.md.$18.png │ │ ├── interactions_between_geometry.md.$19.png │ │ ├── interactions_between_geometry.md.$21.png │ │ ├── interactions_between_geometry.md.$22.png │ │ ├── interactions_between_geometry.md.$24.png │ │ ├── interactions_between_geometry.md.$26.png │ │ ├── interactions_between_geometry.md.$28.png │ │ ├── interactions_between_geometry.md.$29.png │ │ ├── interactions_between_geometry.md.$3.png │ │ ├── interactions_between_geometry.md.$6.png │ │ ├── interactions_between_geometry.md.$7.png │ │ ├── interactions_between_geometry.md.$9.png │ │ ├── interactions_between_geometry.md.twoCylindersAssembled.png │ │ └── interactions_between_geometry.nb │ ├── interactions_with_geometry │ │ ├── interactions_with_geometry.md │ │ ├── interactions_with_geometry.md.$11.png │ │ ├── interactions_with_geometry.md.$13.png │ │ ├── interactions_with_geometry.md.$15.png │ │ ├── interactions_with_geometry.md.$17.png │ │ ├── interactions_with_geometry.md.$19.png │ │ ├── interactions_with_geometry.md.$21.png │ │ ├── interactions_with_geometry.md.$23.png │ │ ├── interactions_with_geometry.md.$24.png │ │ ├── interactions_with_geometry.md.$25.png │ │ ├── interactions_with_geometry.md.$27.png │ │ ├── interactions_with_geometry.md.$3.png │ │ ├── interactions_with_geometry.md.$30.png │ │ ├── interactions_with_geometry.md.$32.png │ │ ├── interactions_with_geometry.md.$33.png │ │ ├── interactions_with_geometry.md.$34.png │ │ ├── interactions_with_geometry.md.$35.png │ │ ├── interactions_with_geometry.md.$37.png │ │ ├── interactions_with_geometry.md.$39.png │ │ ├── interactions_with_geometry.md.$40.png │ │ ├── interactions_with_geometry.md.$46.png │ │ ├── interactions_with_geometry.md.$48_1.png │ │ ├── interactions_with_geometry.md.$48_2.png │ │ ├── interactions_with_geometry.md.$48_3.png │ │ ├── interactions_with_geometry.md.$5.png │ │ ├── interactions_with_geometry.md.$52.png │ │ ├── interactions_with_geometry.md.$6.png │ │ ├── interactions_with_geometry.md.$7.png │ │ ├── interactions_with_geometry.md.$9.png │ │ ├── interactions_with_geometry.md.aBolt.png │ │ ├── interactions_with_geometry.md.aDesign.png │ │ ├── interactions_with_geometry.md.aRectangle.png │ │ ├── interactions_with_geometry.md.taggedAssembly.png │ │ └── interactions_with_geometry.nb │ ├── principles │ │ ├── principles.md │ │ └── principles.nb │ ├── reference_geometry │ │ ├── reference_geometry.md │ │ ├── reference_geometry.md.$11.png │ │ ├── reference_geometry.md.$3.png │ │ ├── reference_geometry.md.$5.png │ │ ├── reference_geometry.md.$7.png │ │ ├── reference_geometry.md.$9.png │ │ └── reference_geometry.nb │ ├── tags │ │ ├── tags.md │ │ ├── tags.md.$3.png │ │ ├── tags.md.$4.png │ │ ├── tags.md.$7.png │ │ ├── tags.md.$8.png │ │ └── tags.nb │ └── user_interface │ │ ├── user_interface.md │ │ └── user_interface.nb ├── index.md ├── index.md.$2_1.png ├── index.md.$2_2.png ├── index.nb ├── projects │ ├── BarbourSmith │ │ └── belt_sprockets │ │ │ ├── belt_sprockets.md │ │ │ ├── belt_sprockets.nb │ │ │ ├── examples.md │ │ │ ├── examples.md.$10_example.png │ │ │ ├── examples.md.$11_example.png │ │ │ ├── examples.md.$12_example.png │ │ │ ├── examples.md.$13_example.png │ │ │ ├── examples.md.$14_example.png │ │ │ ├── examples.md.$15_example.png │ │ │ ├── examples.md.$16_example.png │ │ │ ├── examples.md.$1_example.png │ │ │ ├── examples.md.$2_example.png │ │ │ ├── examples.md.$3_example.png │ │ │ ├── examples.md.$4_example.png │ │ │ ├── examples.md.$5_example.png │ │ │ ├── examples.md.$6_example.png │ │ │ ├── examples.md.$7_example.png │ │ │ ├── examples.md.$8_example.png │ │ │ ├── examples.md.$9_example.png │ │ │ └── examples.nb │ ├── index.md │ ├── index.nb │ └── pentacular │ │ ├── 28BYJ-48 │ │ ├── 28BYJ-48.md │ │ ├── 28BYJ-48.md.$2.png │ │ ├── 28BYJ-48.md.$3.png │ │ ├── 28BYJ-48.md.$4.png │ │ ├── 28BYJ-48.md.$6.png │ │ └── 28BYJ-48.nb │ │ ├── api │ │ ├── Edge.md │ │ ├── Edge.nb │ │ ├── absolute.md │ │ ├── absolute.nb │ │ ├── eachEdge.md │ │ └── eachEdge.nb │ │ ├── bear │ │ ├── bear.md │ │ ├── bear.md.$2_bear.png │ │ ├── bear.md.$3.png │ │ ├── bear.md.$3_slices.png │ │ ├── bear.nb │ │ ├── bear.slices.pdf │ │ └── bear.stl │ │ ├── bearing │ │ ├── bearing.md │ │ ├── bearing.md.bearing_10_7.png │ │ ├── bearing.md.bearing_10_7_bearing_10_7_pin.png │ │ ├── bearing.md.bearing_10_7_bearing_10_7_top.png │ │ └── bearing.nb │ │ ├── belt_sprokets │ │ ├── belt_sprokets.md │ │ └── belt_sprokets.nb │ │ ├── bolt │ │ ├── bolt.md │ │ ├── bolt.md.$2.png │ │ ├── bolt.nb │ │ ├── examples.md │ │ ├── examples.md.$2.png │ │ └── examples.nb │ │ ├── clock │ │ ├── clock.md │ │ ├── clock.md.$11.png │ │ ├── clock.md.$5.png │ │ ├── clock.md.$6.png │ │ ├── clock.md.$8.png │ │ └── clock.nb │ │ ├── cnc │ │ ├── spindle_mount.md │ │ ├── spindle_mount.md.$1_spindle_mount.png │ │ └── spindle_mount.nb │ │ ├── desk │ │ ├── desk.md │ │ ├── desk.md.cornerDesign3.png │ │ ├── desk.md.desk.png │ │ ├── desk.md.desk1400.png │ │ ├── desk.md.desk1400b.png │ │ ├── desk.md.desk700b.png │ │ ├── desk.md.deskHalfBase.png │ │ ├── desk.md.parts.png │ │ ├── desk.md.parts_parts.png │ │ ├── desk.md.room.png │ │ └── desk.nb │ │ ├── engrave │ │ ├── engrave.md │ │ ├── engrave.md.inset.png │ │ ├── engrave.md.model.png │ │ └── engrave.nb │ │ ├── fold │ │ ├── fold.md │ │ ├── fold.md.$1.png │ │ ├── fold.md.$2_cube.png │ │ ├── fold.md.e_4.png │ │ ├── fold.md.p.png │ │ ├── fold.md.r.png │ │ └── fold.nb │ │ ├── gear │ │ ├── examples.md │ │ ├── examples.md.$1_gear_16.png │ │ ├── examples.md.$2.png │ │ ├── examples.md.$3.png │ │ ├── examples.md.$4.png │ │ ├── examples.md.planetaryDesign.png │ │ ├── examples.md.planetaryDesign_axle.png │ │ ├── examples.md.planetaryDesign_hoop.png │ │ ├── examples.md.planetaryDesign_planetary.png │ │ ├── examples.md.planetaryDesign_ring.png │ │ ├── examples.md.planetaryDesign_solar.png │ │ ├── examples.md.planetaryFootprint.png │ │ ├── examples.md.rack.png │ │ ├── examples.md.ring.png │ │ ├── examples.md.solar.png │ │ ├── examples.nb │ │ ├── gear.md │ │ └── gear.nb │ │ ├── holder │ │ ├── holder.md │ │ ├── holder.md.magneticPenHolder.png │ │ ├── holder.md.magneticPenHolder_holder.png │ │ └── holder.nb │ │ ├── lego │ │ ├── examples.md │ │ ├── examples.md.axleHole.png │ │ ├── examples.md.axleHole_axle_hole.png │ │ ├── examples.md.axleJoiner16_AxleJoiner16.png │ │ ├── examples.md.axleProfile.png │ │ ├── examples.md.block16x16x3_2.png │ │ ├── examples.md.block16x16x6_4.png │ │ ├── examples.md.block16x8x9_6.png │ │ ├── examples.md.block24x24x3_2.png │ │ ├── examples.md.block24x24x6_4.png │ │ ├── examples.md.block32x8x9_6_block32x8x9_6e.png │ │ ├── examples.md.block8x8x3_2.png │ │ ├── examples.md.block8x8x6_4.png │ │ ├── examples.md.halfTechnicConnector_halfTechnicConnector.png │ │ ├── examples.md.horizontalBushingHole.png │ │ ├── examples.md.horizontalConnector_horizontalConnector.png │ │ ├── examples.md.socket24x24x1_6.png │ │ ├── examples.md.socket24x24x3_2.png │ │ ├── examples.md.socketBoard16x16x2.png │ │ ├── examples.md.socketBoard32x8x3_2.png │ │ ├── examples.md.technicConnector_technicConnector.png │ │ ├── examples.md.technicPlug5mm_technicPlug5mm.png │ │ ├── examples.md.technic_1x6.png │ │ ├── examples.md.technic_technic.png │ │ ├── examples.md.verticalBushingHole.png │ │ ├── examples.md.verticalConnector_verticalConnector.png │ │ ├── examples.nb │ │ ├── lego.md │ │ ├── lego.md.axleHole_axle_hole.png │ │ ├── lego.md.horizontalBushingHole.png │ │ ├── lego.md.horizontalConnector_horizontalConnector.png │ │ ├── lego.md.verticalBushingHole.png │ │ ├── lego.md.verticalConnector_verticalConnector.png │ │ └── lego.nb │ │ ├── makerspace │ │ ├── makerspace.ladybird_body.svg │ │ ├── makerspace.ladybird_wings.svg │ │ └── makerspace.md │ │ ├── micro_gear_motor │ │ ├── examples.md │ │ ├── examples.md.$1_motor_case.png │ │ ├── examples.md.axleHole_axle_hole.png │ │ ├── examples.md.horizontalBushingHole.png │ │ ├── examples.md.horizontalConnector_horizontalConnector.png │ │ ├── examples.md.verticalBushingHole.png │ │ ├── examples.md.verticalConnector_verticalConnector.png │ │ ├── examples.nb │ │ ├── micro_gear_motor.md │ │ └── micro_gear_motor.nb │ │ ├── mold │ │ ├── hex.md │ │ ├── hex.md.assembled.png │ │ ├── hex.md.disassembled.png │ │ ├── hex.nb │ │ └── mold.md │ │ ├── monocle │ │ ├── monocle.md │ │ └── monocle.nb │ │ ├── openforge │ │ ├── openforge.md │ │ ├── openforge.nb │ │ ├── tiles.md │ │ └── tiles.nb │ │ ├── plots │ │ ├── calibration.calibration.gcode │ │ ├── calibration.calibration_0.gcode │ │ ├── calibration.md │ │ ├── calibration.nb │ │ ├── dinosaur.dinosaur.gcode │ │ ├── dinosaur.dinosaur_0.gcode │ │ ├── dinosaur.md │ │ ├── dinosaur.nb │ │ ├── flowers.flowers.gcode │ │ ├── flowers.flowers_0.gcode │ │ ├── flowers.md │ │ ├── flowers.nb │ │ ├── mandala.mandala.gcode │ │ ├── mandala.mandala_0.gcode │ │ ├── mandala.md │ │ ├── mandala.nb │ │ ├── spiral.md │ │ ├── spiral.nb │ │ ├── spiral.spiral.gcode │ │ ├── spiral.spiral_0.gcode │ │ ├── stars.md │ │ ├── stars.nb │ │ ├── stars.stars.gcode │ │ ├── stars.stars_0.gcode │ │ ├── visnezh.md │ │ ├── visnezh.nb │ │ ├── visnezh.visnezh.gcode │ │ └── visnezh.visnezh_0.gcode │ │ ├── saucer │ │ ├── saucer.md │ │ └── saucer.nb │ │ ├── sg90 │ │ └── sg90.md │ │ ├── terrarium │ │ ├── terrarium.faces.pdf │ │ ├── terrarium.faces_2.pdf │ │ ├── terrarium.faces_3.pdf │ │ ├── terrarium.faces_4.pdf │ │ ├── terrarium.faces_5.pdf │ │ ├── terrarium.faces_6.pdf │ │ ├── terrarium.lid_base.pdf │ │ ├── terrarium.lid_pin.pdf │ │ ├── terrarium.lid_top.pdf │ │ ├── terrarium.md │ │ ├── terrarium.md.$7_faces.png │ │ ├── terrarium.md.$7_lid_base.png │ │ ├── terrarium.md.$7_lid_pin.png │ │ ├── terrarium.md.$7_lid_top.png │ │ ├── terrarium.md.terrarium_1.png │ │ ├── terrarium.md.terrarium_2.png │ │ └── terrarium.nb │ │ ├── tile │ │ ├── map.md │ │ ├── map.md.fiveTile.png │ │ ├── map.md.hexagonalTile_hex.png │ │ ├── map.md.squareTile.png │ │ └── map.nb │ │ ├── tile6 │ │ └── tile6.md │ │ └── train │ │ ├── train.md │ │ └── train.nb ├── regression │ ├── font │ │ ├── font.md │ │ ├── font.md.$5.png │ │ └── font.nb │ ├── parts │ │ ├── parts.md │ │ └── parts.nb │ ├── regression.md │ ├── regression.nb │ ├── shape │ │ ├── shape.md │ │ ├── shape.md.$1.png │ │ ├── shape.md.$10.png │ │ ├── shape.md.$11.png │ │ ├── shape.md.$12.png │ │ ├── shape.md.$13.png │ │ ├── shape.md.$14.png │ │ ├── shape.md.$15.png │ │ ├── shape.md.$16.png │ │ ├── shape.md.$17.png │ │ ├── shape.md.$18.png │ │ ├── shape.md.$19.png │ │ ├── shape.md.$2.png │ │ ├── shape.md.$20.png │ │ ├── shape.md.$21.png │ │ ├── shape.md.$22.png │ │ ├── shape.md.$23.png │ │ ├── shape.md.$24.png │ │ ├── shape.md.$25.png │ │ ├── shape.md.$26.png │ │ ├── shape.md.$27.png │ │ ├── shape.md.$28.png │ │ ├── shape.md.$29.png │ │ ├── shape.md.$3.png │ │ ├── shape.md.$30.png │ │ ├── shape.md.$31.png │ │ ├── shape.md.$33.png │ │ ├── shape.md.$35.png │ │ ├── shape.md.$36.png │ │ ├── shape.md.$37.png │ │ ├── shape.md.$38.png │ │ ├── shape.md.$39.png │ │ ├── shape.md.$4.png │ │ ├── shape.md.$40.png │ │ ├── shape.md.$41.png │ │ ├── shape.md.$42.png │ │ ├── shape.md.$43.png │ │ ├── shape.md.$44.png │ │ ├── shape.md.$45.png │ │ ├── shape.md.$46.png │ │ ├── shape.md.$47.png │ │ ├── shape.md.$48.png │ │ ├── shape.md.$49.png │ │ ├── shape.md.$5.png │ │ ├── shape.md.$50.png │ │ ├── shape.md.$51_triangle.png │ │ ├── shape.md.$52.png │ │ ├── shape.md.$53_1.png │ │ ├── shape.md.$53_2.png │ │ ├── shape.md.$53_3.png │ │ ├── shape.md.$53_4.png │ │ ├── shape.md.$54.png │ │ ├── shape.md.$55_54.png │ │ ├── shape.md.$56_60.png │ │ ├── shape.md.$6.png │ │ ├── shape.md.$61.png │ │ ├── shape.md.$62.png │ │ ├── shape.md.$63.png │ │ ├── shape.md.$64.png │ │ ├── shape.md.$65.png │ │ ├── shape.md.$66.png │ │ ├── shape.md.$67.png │ │ ├── shape.md.$68.png │ │ ├── shape.md.$69.png │ │ ├── shape.md.$7.png │ │ ├── shape.md.$70.png │ │ ├── shape.md.$71.png │ │ ├── shape.md.$72.png │ │ ├── shape.md.$73.png │ │ ├── shape.md.$74.png │ │ ├── shape.md.$75.png │ │ ├── shape.md.$76.png │ │ ├── shape.md.$77.png │ │ ├── shape.md.$78.png │ │ ├── shape.md.$79.png │ │ ├── shape.md.$8.png │ │ ├── shape.md.$80.png │ │ ├── shape.md.$81.png │ │ ├── shape.md.$82.png │ │ ├── shape.md.$83.png │ │ ├── shape.md.$84.png │ │ ├── shape.md.$85.png │ │ ├── shape.md.$86.png │ │ ├── shape.md.$87.png │ │ ├── shape.md.c.png │ │ ├── shape.nb │ │ └── shape.triangle.svg │ ├── shape_2 │ │ ├── shape_2.md │ │ ├── shape_2.md.$1.png │ │ ├── shape_2.md.$10.png │ │ ├── shape_2.md.$11.png │ │ ├── shape_2.md.$12.png │ │ ├── shape_2.md.$13.png │ │ ├── shape_2.md.$14.png │ │ ├── shape_2.md.$2.png │ │ ├── shape_2.md.$3.png │ │ ├── shape_2.md.$4.png │ │ ├── shape_2.md.$5.png │ │ ├── shape_2.md.$6.png │ │ ├── shape_2.md.$7.png │ │ ├── shape_2.md.$8_2.png │ │ ├── shape_2.md.$9.png │ │ └── shape_2.nb │ ├── shapes │ │ ├── shapes.md │ │ ├── shapes.md.$1.png │ │ ├── shapes.md.$10.png │ │ ├── shapes.md.$11.png │ │ ├── shapes.md.$12.png │ │ ├── shapes.md.$13.png │ │ ├── shapes.md.$14.png │ │ ├── shapes.md.$15.png │ │ ├── shapes.md.$16.png │ │ ├── shapes.md.$17.png │ │ ├── shapes.md.$18.png │ │ ├── shapes.md.$19.png │ │ ├── shapes.md.$2.png │ │ ├── shapes.md.$20.png │ │ ├── shapes.md.$21.png │ │ ├── shapes.md.$22.png │ │ ├── shapes.md.$23.png │ │ ├── shapes.md.$24.png │ │ ├── shapes.md.$25.png │ │ ├── shapes.md.$26.png │ │ ├── shapes.md.$27.png │ │ ├── shapes.md.$28.png │ │ ├── shapes.md.$29.png │ │ ├── shapes.md.$3.png │ │ ├── shapes.md.$30.png │ │ ├── shapes.md.$31.png │ │ ├── shapes.md.$32.png │ │ ├── shapes.md.$33_1.png │ │ ├── shapes.md.$34.png │ │ ├── shapes.md.$35.png │ │ ├── shapes.md.$36_3.png │ │ ├── shapes.md.$37_3.png │ │ ├── shapes.md.$38.png │ │ ├── shapes.md.$39.png │ │ ├── shapes.md.$4.png │ │ ├── shapes.md.$40.png │ │ ├── shapes.md.$41.png │ │ ├── shapes.md.$42.png │ │ ├── shapes.md.$43.png │ │ ├── shapes.md.$44.png │ │ ├── shapes.md.$45.png │ │ ├── shapes.md.$46.png │ │ ├── shapes.md.$47.png │ │ ├── shapes.md.$48.png │ │ ├── shapes.md.$49.png │ │ ├── shapes.md.$5.png │ │ ├── shapes.md.$50.png │ │ ├── shapes.md.$51_1.png │ │ ├── shapes.md.$52_2.png │ │ ├── shapes.md.$53_5.png │ │ ├── shapes.md.$54.png │ │ ├── shapes.md.$55.png │ │ ├── shapes.md.$56.png │ │ ├── shapes.md.$57.png │ │ ├── shapes.md.$6.png │ │ ├── shapes.md.$7.png │ │ ├── shapes.md.$8.png │ │ ├── shapes.md.$9.png │ │ ├── shapes.md.q.png │ │ └── shapes.nb │ ├── smooth.md │ ├── smooth │ │ ├── smooth.md │ │ ├── smooth.md.fused_1.png │ │ ├── smooth.md.remeshed_1.png │ │ ├── smooth.md.smoothed_1.png │ │ └── smooth.nb │ ├── speed │ │ ├── disjoint.md │ │ ├── disjoint.md.$1_1.png │ │ ├── disjoint.md.$1_2.png │ │ ├── disjoint.md.$2.png │ │ └── disjoint.nb │ └── trinkets │ │ ├── honeycomb.md │ │ ├── honeycomb.md.$1.png │ │ ├── honeycomb.nb │ │ ├── thing.md │ │ ├── thing.test shape.stl_0.stl │ │ └── vase.md └── start.md ├── package.json ├── publish-es6.sh ├── publish-wasm.sh ├── research ├── JCISEOptmTrgl.pdf ├── Murali97.pdf ├── Net Forces Asym.pdf ├── Subramaniam_thesis.pdf ├── TVCGBSPPolygonization.pdf ├── booleans2009.pdf ├── campen_2010_eg_021.pdf ├── fastbool22-paper.pdf ├── simon-nordved-madsen_rasmus-hallenberg-larsen.pdf └── spiro-spline.pdf ├── server └── ws │ ├── .babelrc │ ├── .eslintrc.cjs │ ├── client.js │ ├── null.test.js │ ├── server.js │ └── worker.js ├── sys ├── .babelrc ├── .eslintrc.cjs ├── README.md ├── ask.js ├── boot.js ├── broadcast-channel.js ├── broadcast.js ├── browser.test-disabled.js ├── browserOrNode.js ├── config.js ├── control.js ├── conversation.js ├── create-hash.cjs ├── db-idb-keyval.js ├── db-idb.js ├── db.js ├── dist │ └── .gitignore ├── document.js ├── emit.js ├── encode.js ├── error.js ├── files.js ├── filesystem.js ├── generateUniqueId.js ├── hash.js ├── listFiles.js ├── log.js ├── main.js ├── nodeWorker.js ├── null.test.js ├── package.json ├── pending.js ├── profile.js ├── read.js ├── read.test.js ├── remove.js ├── remove.test.js ├── rollup_main.js ├── self.js ├── service.js ├── service.node.test.js ├── service.test.nodeWorker.js ├── service.test.webWorker.js ├── service.test.webWorker.loadable.js ├── service.web.test.html ├── servicePool.js ├── sleep.js ├── testdata │ └── hello.txt ├── watchers.js ├── webWorker.js └── write.js └── ui ├── app ├── .babelrc ├── .eslintignore ├── .eslintrc.cjs ├── AceEditNote.js ├── AceEditorAuxiliary.js ├── AceEditorCompleter.js ├── AceEditorLineWidgets.js ├── AceEditorSnippetManager.js ├── App.js ├── Cnc.js ├── ControlNote.js ├── DownloadNote.js ├── DynamicView.js ├── EditNote.js ├── ErrorNote.js ├── IconNote.js ├── JsEditorUi.js ├── JsViewerUi.js ├── Make.js ├── MdNote.js ├── Notebook.css ├── Notebook.js ├── OrbitView.js ├── PrismJSAuxiliary.js ├── Section.js ├── SheetStorage.js ├── Standalone.js ├── TableOfContents.js ├── ViewNote.js ├── accessToken.js ├── local │ ├── drawing-tool.css │ ├── images │ │ ├── close.png │ │ ├── maximize.png │ │ ├── more.png │ │ ├── more2.png │ │ ├── popout.png │ │ └── restore.png │ ├── index.html │ ├── master.js │ ├── prism.css │ ├── publish-alpha.sh │ ├── spinner.css │ ├── style │ │ ├── _base.scss │ │ ├── dark.css │ │ ├── dark.css.map │ │ ├── dark.scss │ │ ├── gray.css │ │ ├── gray.css.map │ │ ├── gray.scss │ │ ├── light.css │ │ ├── light.css.map │ │ └── light.scss │ └── update.sh ├── master.js ├── null.test.js ├── package.json ├── react-flexlayout.css ├── react-multi-split-pane.css ├── rollup_main.js ├── rollup_standalone.js ├── rollup_webworker.js ├── schedule.js └── webworker.js ├── notebook ├── .babelrc ├── .eslintrc.cjs ├── main.js ├── package.json ├── rollup_main.js └── toDomElement.js ├── threejs ├── .babelrc ├── .eslintignore ├── .eslintrc.cjs ├── AnchorControls.js ├── DragControls.js ├── README.md ├── TransformControls.js ├── dist │ └── .gitignore ├── main.js ├── orbitDisplay.js ├── package.json ├── raycast.js ├── resizer.js ├── rollup_main.js ├── util.js ├── view.js └── voxel.js └── v1-auth ├── .babelrc ├── .eslintrc.cjs ├── null.test.js ├── package.json └── server.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/.DS_Store -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/README.md -------------------------------------------------------------------------------- /algorithm/cgal/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /algorithm/cgal/API.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/API.h -------------------------------------------------------------------------------- /algorithm/cgal/Bend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Bend.h -------------------------------------------------------------------------------- /algorithm/cgal/Cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Cast.h -------------------------------------------------------------------------------- /algorithm/cgal/Clip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Clip.h -------------------------------------------------------------------------------- /algorithm/cgal/Cut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Cut.h -------------------------------------------------------------------------------- /algorithm/cgal/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Edge.h -------------------------------------------------------------------------------- /algorithm/cgal/Fair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Fair.h -------------------------------------------------------------------------------- /algorithm/cgal/Fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Fill.h -------------------------------------------------------------------------------- /algorithm/cgal/Fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Fix.h -------------------------------------------------------------------------------- /algorithm/cgal/Fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Fuse.h -------------------------------------------------------------------------------- /algorithm/cgal/Grow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Grow.h -------------------------------------------------------------------------------- /algorithm/cgal/Inset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Inset.h -------------------------------------------------------------------------------- /algorithm/cgal/Iron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Iron.h -------------------------------------------------------------------------------- /algorithm/cgal/Join.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Join.h -------------------------------------------------------------------------------- /algorithm/cgal/Link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Link.h -------------------------------------------------------------------------------- /algorithm/cgal/Loft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Loft.h -------------------------------------------------------------------------------- /algorithm/cgal/Loft2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Loft2.h -------------------------------------------------------------------------------- /algorithm/cgal/Pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Pack.h -------------------------------------------------------------------------------- /algorithm/cgal/Route.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Route.h -------------------------------------------------------------------------------- /algorithm/cgal/Seam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Seam.h -------------------------------------------------------------------------------- /algorithm/cgal/Shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Shell.h -------------------------------------------------------------------------------- /algorithm/cgal/Transform.h: -------------------------------------------------------------------------------- 1 | #pragma one 2 | -------------------------------------------------------------------------------- /algorithm/cgal/Trim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Trim.h -------------------------------------------------------------------------------- /algorithm/cgal/Twist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Twist.h -------------------------------------------------------------------------------- /algorithm/cgal/Wrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/Wrap.h -------------------------------------------------------------------------------- /algorithm/cgal/bend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/bend.js -------------------------------------------------------------------------------- /algorithm/cgal/cast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/cast.js -------------------------------------------------------------------------------- /algorithm/cgal/clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/clip.js -------------------------------------------------------------------------------- /algorithm/cgal/cut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/cut.js -------------------------------------------------------------------------------- /algorithm/cgal/fair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/fair.js -------------------------------------------------------------------------------- /algorithm/cgal/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/fill.js -------------------------------------------------------------------------------- /algorithm/cgal/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/fix.js -------------------------------------------------------------------------------- /algorithm/cgal/fuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/fuse.js -------------------------------------------------------------------------------- /algorithm/cgal/geometry_util.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | class Geometry; 4 | -------------------------------------------------------------------------------- /algorithm/cgal/grow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/grow.js -------------------------------------------------------------------------------- /algorithm/cgal/install_jot_cgal_addon.sh: -------------------------------------------------------------------------------- 1 | (cd jot_cgal_addon; 2 | npm install) 3 | -------------------------------------------------------------------------------- /algorithm/cgal/iron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/iron.js -------------------------------------------------------------------------------- /algorithm/cgal/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/join.js -------------------------------------------------------------------------------- /algorithm/cgal/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/link.js -------------------------------------------------------------------------------- /algorithm/cgal/loft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/loft.js -------------------------------------------------------------------------------- /algorithm/cgal/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/main.js -------------------------------------------------------------------------------- /algorithm/cgal/mu3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/mu3d.h -------------------------------------------------------------------------------- /algorithm/cgal/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/pack.js -------------------------------------------------------------------------------- /algorithm/cgal/random.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /algorithm/cgal/seam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/seam.js -------------------------------------------------------------------------------- /algorithm/cgal/test.cc: -------------------------------------------------------------------------------- 1 | #include "Raycast.h" 2 | 3 | int main() {} 4 | -------------------------------------------------------------------------------- /algorithm/cgal/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/test.sh -------------------------------------------------------------------------------- /algorithm/cgal/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/trim.js -------------------------------------------------------------------------------- /algorithm/cgal/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/util.h -------------------------------------------------------------------------------- /algorithm/cgal/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/cgal/wrap.js -------------------------------------------------------------------------------- /algorithm/color/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /algorithm/color/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /algorithm/contour/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /algorithm/contour/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /algorithm/material/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /algorithm/text/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /algorithm/text/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/text/OFL.txt -------------------------------------------------------------------------------- /algorithm/text/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /algorithm/text/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /algorithm/text/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/text/main.js -------------------------------------------------------------------------------- /algorithm/threejs/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /algorithm/tool/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /algorithm/tool/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/tool/main.js -------------------------------------------------------------------------------- /algorithm/tool/standardToolDefinitions.js: -------------------------------------------------------------------------------- 1 | export const standardToolDefinitions = {}; 2 | -------------------------------------------------------------------------------- /algorithm/tool/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/algorithm/tool/tool.js -------------------------------------------------------------------------------- /api/core/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/core/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/core/.eslintrc.cjs -------------------------------------------------------------------------------- /api/core/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/core/api.js -------------------------------------------------------------------------------- /api/core/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/core/control.js -------------------------------------------------------------------------------- /api/core/evaluate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/core/evaluate.js -------------------------------------------------------------------------------- /api/core/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/core/main.js -------------------------------------------------------------------------------- /api/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/core/package.json -------------------------------------------------------------------------------- /api/shape/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/shape/Arc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Arc.js -------------------------------------------------------------------------------- /api/shape/Assembly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Assembly.js -------------------------------------------------------------------------------- /api/shape/Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Box.js -------------------------------------------------------------------------------- /api/shape/Cached.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Cached.js -------------------------------------------------------------------------------- /api/shape/ChainHull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/ChainHull.js -------------------------------------------------------------------------------- /api/shape/Curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Curve.js -------------------------------------------------------------------------------- /api/shape/Edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Edge.js -------------------------------------------------------------------------------- /api/shape/Empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Empty.js -------------------------------------------------------------------------------- /api/shape/Geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Geometry.js -------------------------------------------------------------------------------- /api/shape/Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Group.js -------------------------------------------------------------------------------- /api/shape/Hershey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Hershey.js -------------------------------------------------------------------------------- /api/shape/Hexagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Hexagon.js -------------------------------------------------------------------------------- /api/shape/Hull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Hull.js -------------------------------------------------------------------------------- /api/shape/Implicit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Implicit.js -------------------------------------------------------------------------------- /api/shape/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Label.js -------------------------------------------------------------------------------- /api/shape/Line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Line.js -------------------------------------------------------------------------------- /api/shape/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Link.js -------------------------------------------------------------------------------- /api/shape/List.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/List.js -------------------------------------------------------------------------------- /api/shape/Loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Loop.js -------------------------------------------------------------------------------- /api/shape/Octagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Octagon.js -------------------------------------------------------------------------------- /api/shape/Orb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Orb.js -------------------------------------------------------------------------------- /api/shape/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Page.js -------------------------------------------------------------------------------- /api/shape/Pentagon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Pentagon.js -------------------------------------------------------------------------------- /api/shape/Plan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Plan.js -------------------------------------------------------------------------------- /api/shape/Point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Point.js -------------------------------------------------------------------------------- /api/shape/Points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Points.js -------------------------------------------------------------------------------- /api/shape/Polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Polygon.js -------------------------------------------------------------------------------- /api/shape/Ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Ref.js -------------------------------------------------------------------------------- /api/shape/Segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Segments.js -------------------------------------------------------------------------------- /api/shape/Shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Shape.js -------------------------------------------------------------------------------- /api/shape/Spiral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Spiral.js -------------------------------------------------------------------------------- /api/shape/Stroke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Stroke.js -------------------------------------------------------------------------------- /api/shape/Triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Triangle.js -------------------------------------------------------------------------------- /api/shape/Wave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/Wave.js -------------------------------------------------------------------------------- /api/shape/absolute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/absolute.js -------------------------------------------------------------------------------- /api/shape/abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/abstract.js -------------------------------------------------------------------------------- /api/shape/addTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/addTo.js -------------------------------------------------------------------------------- /api/shape/align.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/align.js -------------------------------------------------------------------------------- /api/shape/alignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/alignment.js -------------------------------------------------------------------------------- /api/shape/and.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/and.js -------------------------------------------------------------------------------- /api/shape/area.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/area.js -------------------------------------------------------------------------------- /api/shape/as.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/as.js -------------------------------------------------------------------------------- /api/shape/asPart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/asPart.js -------------------------------------------------------------------------------- /api/shape/assemble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/assemble.js -------------------------------------------------------------------------------- /api/shape/at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/at.js -------------------------------------------------------------------------------- /api/shape/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/base.js -------------------------------------------------------------------------------- /api/shape/bb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/bb.js -------------------------------------------------------------------------------- /api/shape/bend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/bend.js -------------------------------------------------------------------------------- /api/shape/by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/by.js -------------------------------------------------------------------------------- /api/shape/centroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/centroid.js -------------------------------------------------------------------------------- /api/shape/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/clean.js -------------------------------------------------------------------------------- /api/shape/clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/clip.js -------------------------------------------------------------------------------- /api/shape/clipFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/clipFrom.js -------------------------------------------------------------------------------- /api/shape/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/cloud.js -------------------------------------------------------------------------------- /api/shape/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/color.js -------------------------------------------------------------------------------- /api/shape/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/copy.js -------------------------------------------------------------------------------- /api/shape/cut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/cut.js -------------------------------------------------------------------------------- /api/shape/cutFrom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/cutFrom.js -------------------------------------------------------------------------------- /api/shape/cutOut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/cutOut.js -------------------------------------------------------------------------------- /api/shape/define.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/define.js -------------------------------------------------------------------------------- /api/shape/deform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/deform.js -------------------------------------------------------------------------------- /api/shape/demesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/demesh.js -------------------------------------------------------------------------------- /api/shape/diameter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/diameter.js -------------------------------------------------------------------------------- /api/shape/dilateXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/dilateXY.js -------------------------------------------------------------------------------- /api/shape/disjoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/disjoint.js -------------------------------------------------------------------------------- /api/shape/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/drop.js -------------------------------------------------------------------------------- /api/shape/dxf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/dxf.js -------------------------------------------------------------------------------- /api/shape/each.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/each.js -------------------------------------------------------------------------------- /api/shape/eachEdge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/eachEdge.js -------------------------------------------------------------------------------- /api/shape/eachPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/eachPoint.js -------------------------------------------------------------------------------- /api/shape/edges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/edges.js -------------------------------------------------------------------------------- /api/shape/exterior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/exterior.js -------------------------------------------------------------------------------- /api/shape/extrude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/extrude.js -------------------------------------------------------------------------------- /api/shape/faces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/faces.js -------------------------------------------------------------------------------- /api/shape/fair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/fair.js -------------------------------------------------------------------------------- /api/shape/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/fill.js -------------------------------------------------------------------------------- /api/shape/fit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/fit.js -------------------------------------------------------------------------------- /api/shape/fitTo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/fitTo.js -------------------------------------------------------------------------------- /api/shape/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/fix.js -------------------------------------------------------------------------------- /api/shape/flat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/flat.js -------------------------------------------------------------------------------- /api/shape/fuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/fuse.js -------------------------------------------------------------------------------- /api/shape/gap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/gap.js -------------------------------------------------------------------------------- /api/shape/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/gauge.js -------------------------------------------------------------------------------- /api/shape/gcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/gcode.js -------------------------------------------------------------------------------- /api/shape/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/get.js -------------------------------------------------------------------------------- /api/shape/getAll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/getAll.js -------------------------------------------------------------------------------- /api/shape/getNot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/getNot.js -------------------------------------------------------------------------------- /api/shape/getTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/getTag.js -------------------------------------------------------------------------------- /api/shape/ghost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/ghost.js -------------------------------------------------------------------------------- /api/shape/grow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/grow.js -------------------------------------------------------------------------------- /api/shape/hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/hold.js -------------------------------------------------------------------------------- /api/shape/holes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/holes.js -------------------------------------------------------------------------------- /api/shape/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/image.js -------------------------------------------------------------------------------- /api/shape/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/in.js -------------------------------------------------------------------------------- /api/shape/inset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/inset.js -------------------------------------------------------------------------------- /api/shape/involute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/involute.js -------------------------------------------------------------------------------- /api/shape/iron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/iron.js -------------------------------------------------------------------------------- /api/shape/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/join.js -------------------------------------------------------------------------------- /api/shape/ldraw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/ldraw.js -------------------------------------------------------------------------------- /api/shape/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/load.js -------------------------------------------------------------------------------- /api/shape/loft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/loft.js -------------------------------------------------------------------------------- /api/shape/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/log.js -------------------------------------------------------------------------------- /api/shape/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/main.js -------------------------------------------------------------------------------- /api/shape/mark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/mark.js -------------------------------------------------------------------------------- /api/shape/maskedBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/maskedBy.js -------------------------------------------------------------------------------- /api/shape/masking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/masking.js -------------------------------------------------------------------------------- /api/shape/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/material.js -------------------------------------------------------------------------------- /api/shape/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/math.js -------------------------------------------------------------------------------- /api/shape/md.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/md.js -------------------------------------------------------------------------------- /api/shape/minimizeOverhang.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api/shape/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/move.js -------------------------------------------------------------------------------- /api/shape/moveAlong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/moveAlong.js -------------------------------------------------------------------------------- /api/shape/noGap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/noGap.js -------------------------------------------------------------------------------- /api/shape/noHoles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/noHoles.js -------------------------------------------------------------------------------- /api/shape/noOp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/noOp.js -------------------------------------------------------------------------------- /api/shape/normal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/normal.js -------------------------------------------------------------------------------- /api/shape/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/note.js -------------------------------------------------------------------------------- /api/shape/nth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/nth.js -------------------------------------------------------------------------------- /api/shape/obb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/obb.js -------------------------------------------------------------------------------- /api/shape/off.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/off.js -------------------------------------------------------------------------------- /api/shape/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/offset.js -------------------------------------------------------------------------------- /api/shape/on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/on.js -------------------------------------------------------------------------------- /api/shape/op.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/op.js -------------------------------------------------------------------------------- /api/shape/orient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/orient.js -------------------------------------------------------------------------------- /api/shape/origin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/origin.js -------------------------------------------------------------------------------- /api/shape/outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/outline.js -------------------------------------------------------------------------------- /api/shape/overlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/overlay.js -------------------------------------------------------------------------------- /api/shape/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/pack.js -------------------------------------------------------------------------------- /api/shape/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/package.json -------------------------------------------------------------------------------- /api/shape/pdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/pdf.js -------------------------------------------------------------------------------- /api/shape/png.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/png.js -------------------------------------------------------------------------------- /api/shape/points.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/points.js -------------------------------------------------------------------------------- /api/shape/put.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/put.js -------------------------------------------------------------------------------- /api/shape/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/random.js -------------------------------------------------------------------------------- /api/shape/refine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/refine.js -------------------------------------------------------------------------------- /api/shape/refs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/refs.js -------------------------------------------------------------------------------- /api/shape/remesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/remesh.js -------------------------------------------------------------------------------- /api/shape/repair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/repair.js -------------------------------------------------------------------------------- /api/shape/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/route.js -------------------------------------------------------------------------------- /api/shape/runLength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/runLength.js -------------------------------------------------------------------------------- /api/shape/rx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/rx.js -------------------------------------------------------------------------------- /api/shape/ry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/ry.js -------------------------------------------------------------------------------- /api/shape/rz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/rz.js -------------------------------------------------------------------------------- /api/shape/save.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/save.js -------------------------------------------------------------------------------- /api/shape/scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/scale.js -------------------------------------------------------------------------------- /api/shape/seam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/seam.js -------------------------------------------------------------------------------- /api/shape/section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/section.js -------------------------------------------------------------------------------- /api/shape/separate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/separate.js -------------------------------------------------------------------------------- /api/shape/seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/seq.js -------------------------------------------------------------------------------- /api/shape/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/serialize.js -------------------------------------------------------------------------------- /api/shape/setTag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/setTag.js -------------------------------------------------------------------------------- /api/shape/setTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/setTags.js -------------------------------------------------------------------------------- /api/shape/shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/shadow.js -------------------------------------------------------------------------------- /api/shape/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/shell.js -------------------------------------------------------------------------------- /api/shape/simplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/simplify.js -------------------------------------------------------------------------------- /api/shape/size.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/size.js -------------------------------------------------------------------------------- /api/shape/skeleton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/skeleton.js -------------------------------------------------------------------------------- /api/shape/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/sketch.js -------------------------------------------------------------------------------- /api/shape/smooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/smooth.js -------------------------------------------------------------------------------- /api/shape/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/sort.js -------------------------------------------------------------------------------- /api/shape/stl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/stl.js -------------------------------------------------------------------------------- /api/shape/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/svg.js -------------------------------------------------------------------------------- /api/shape/sx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/sx.js -------------------------------------------------------------------------------- /api/shape/sy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/sy.js -------------------------------------------------------------------------------- /api/shape/sz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/sz.js -------------------------------------------------------------------------------- /api/shape/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/table.js -------------------------------------------------------------------------------- /api/shape/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/tag.js -------------------------------------------------------------------------------- /api/shape/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/tags.js -------------------------------------------------------------------------------- /api/shape/tint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/tint.js -------------------------------------------------------------------------------- /api/shape/to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/to.js -------------------------------------------------------------------------------- /api/shape/tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/tool.js -------------------------------------------------------------------------------- /api/shape/toolpath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/toolpath.js -------------------------------------------------------------------------------- /api/shape/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/transform.js -------------------------------------------------------------------------------- /api/shape/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/trim.js -------------------------------------------------------------------------------- /api/shape/twist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/twist.js -------------------------------------------------------------------------------- /api/shape/tx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/tx.js -------------------------------------------------------------------------------- /api/shape/ty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/ty.js -------------------------------------------------------------------------------- /api/shape/tz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/tz.js -------------------------------------------------------------------------------- /api/shape/unfold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/unfold.js -------------------------------------------------------------------------------- /api/shape/untag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/untag.js -------------------------------------------------------------------------------- /api/shape/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/validate.js -------------------------------------------------------------------------------- /api/shape/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/version.js -------------------------------------------------------------------------------- /api/shape/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/view.js -------------------------------------------------------------------------------- /api/shape/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/volume.js -------------------------------------------------------------------------------- /api/shape/voxels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/voxels.js -------------------------------------------------------------------------------- /api/shape/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/wrap.js -------------------------------------------------------------------------------- /api/shape/x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/x.js -------------------------------------------------------------------------------- /api/shape/y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/y.js -------------------------------------------------------------------------------- /api/shape/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/z.js -------------------------------------------------------------------------------- /api/shape/zag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/shape/zag.js -------------------------------------------------------------------------------- /api/threejs/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/threejs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/threejs/main.js -------------------------------------------------------------------------------- /api/threejs/readSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/threejs/readSvg.js -------------------------------------------------------------------------------- /api/v1-dst/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/v1-dst/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /api/v1-dst/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-dst/main.js -------------------------------------------------------------------------------- /api/v1-dst/readDst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-dst/readDst.js -------------------------------------------------------------------------------- /api/v1-font/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/v1-font/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /api/v1-font/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-font/main.js -------------------------------------------------------------------------------- /api/v1-obj/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/v1-obj/fromObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-obj/fromObj.js -------------------------------------------------------------------------------- /api/v1-obj/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-obj/main.js -------------------------------------------------------------------------------- /api/v1-obj/readObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-obj/readObj.js -------------------------------------------------------------------------------- /api/v1-off/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/v1-off/fromOff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-off/fromOff.js -------------------------------------------------------------------------------- /api/v1-off/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-off/main.js -------------------------------------------------------------------------------- /api/v1-off/readOff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-off/readOff.js -------------------------------------------------------------------------------- /api/v1-shapefile/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/v1-shapefile/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /api/v1-shapes/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /api/v1-threejs/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/v1-threejs/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /api/v1-threejs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-threejs/main.js -------------------------------------------------------------------------------- /api/v1-tools/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /api/v1-tools/carve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/api/v1-tools/carve.js -------------------------------------------------------------------------------- /api/v1-tools/main.js: -------------------------------------------------------------------------------- 1 | import './carve.js'; 2 | -------------------------------------------------------------------------------- /ava.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ava.config.js -------------------------------------------------------------------------------- /cache/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cache/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cache/.eslintrc.cjs -------------------------------------------------------------------------------- /cache/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /cache/cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cache/cache.js -------------------------------------------------------------------------------- /cache/cache.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cache/cache.test.js -------------------------------------------------------------------------------- /cache/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /cache/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cache/main.js -------------------------------------------------------------------------------- /cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cache/package.json -------------------------------------------------------------------------------- /cache/rollup_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cache/rollup_main.js -------------------------------------------------------------------------------- /cli/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /cli/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cli/.eslintrc.cjs -------------------------------------------------------------------------------- /cli/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cli/cli.js -------------------------------------------------------------------------------- /cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cli/package.json -------------------------------------------------------------------------------- /cli/simplify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/cli/simplify.sh -------------------------------------------------------------------------------- /compiler/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /compiler/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/.eslintignore -------------------------------------------------------------------------------- /compiler/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/.eslintrc.cjs -------------------------------------------------------------------------------- /compiler/astring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/astring.js -------------------------------------------------------------------------------- /compiler/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /compiler/flow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/flow.js -------------------------------------------------------------------------------- /compiler/flow.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/flow.test.js -------------------------------------------------------------------------------- /compiler/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/main.js -------------------------------------------------------------------------------- /compiler/molecule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/molecule.json -------------------------------------------------------------------------------- /compiler/molecules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/molecules.js -------------------------------------------------------------------------------- /compiler/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/package.json -------------------------------------------------------------------------------- /compiler/rewrite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/rewrite.js -------------------------------------------------------------------------------- /compiler/toGraph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/compiler/toGraph.js -------------------------------------------------------------------------------- /convert/dst/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/dst/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /convert/dst/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/dst/dst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/dst/dst.js -------------------------------------------------------------------------------- /convert/dst/fromDst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/dst/fromDst.js -------------------------------------------------------------------------------- /convert/dst/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/dst/main.js -------------------------------------------------------------------------------- /convert/dst/test.dst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/dst/test.dst -------------------------------------------------------------------------------- /convert/dxf/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/dxf/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/dxf/fromDxf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/dxf/fromDxf.js -------------------------------------------------------------------------------- /convert/dxf/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/dxf/main.js -------------------------------------------------------------------------------- /convert/dxf/toDxf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/dxf/toDxf.js -------------------------------------------------------------------------------- /convert/gcode/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/gcode/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/gcode/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/gcode/main.js -------------------------------------------------------------------------------- /convert/ldraw/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/ldraw/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/ldraw/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/ldraw/main.js -------------------------------------------------------------------------------- /convert/notebook/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/obj/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/obj/fromObj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/obj/fromObj.js -------------------------------------------------------------------------------- /convert/obj/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/obj/main.js -------------------------------------------------------------------------------- /convert/off/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/off/fromOff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/off/fromOff.js -------------------------------------------------------------------------------- /convert/off/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/off/main.js -------------------------------------------------------------------------------- /convert/pdf/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/pdf/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /convert/pdf/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/pdf/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/pdf/main.js -------------------------------------------------------------------------------- /convert/pdf/toPdf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/pdf/toPdf.js -------------------------------------------------------------------------------- /convert/png/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/png/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/png/fromPng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/png/fromPng.js -------------------------------------------------------------------------------- /convert/png/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/png/main.js -------------------------------------------------------------------------------- /convert/png/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/png/test.png -------------------------------------------------------------------------------- /convert/png/toPng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/png/toPng.js -------------------------------------------------------------------------------- /convert/shapefile/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/shapefile/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/stl/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/stl/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /convert/stl/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/stl/fromStl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/stl/fromStl.js -------------------------------------------------------------------------------- /convert/stl/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/stl/main.js -------------------------------------------------------------------------------- /convert/stl/toStl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/stl/toStl.js -------------------------------------------------------------------------------- /convert/svg/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/svg/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /convert/svg/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /convert/svg/fromSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/svg/fromSvg.js -------------------------------------------------------------------------------- /convert/svg/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/svg/main.js -------------------------------------------------------------------------------- /convert/svg/ship.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/svg/ship.svg -------------------------------------------------------------------------------- /convert/svg/toSvg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/convert/svg/toSvg.js -------------------------------------------------------------------------------- /convert/threejs/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /convert/threejs/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /convert/threejs/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /data/shape/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /data/shape/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /data/shape/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /data/shape/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/data/shape/main.js -------------------------------------------------------------------------------- /data/shape/unitCube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/data/shape/unitCube.js -------------------------------------------------------------------------------- /doc/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /doc/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/doc/.eslintrc.cjs -------------------------------------------------------------------------------- /doc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/doc/package.json -------------------------------------------------------------------------------- /doc/screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/doc/screenshot.js -------------------------------------------------------------------------------- /doc/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/doc/update.js -------------------------------------------------------------------------------- /doc/updateNotebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/doc/updateNotebook.js -------------------------------------------------------------------------------- /es6/cgal_browser.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/cgal_browser.wasm -------------------------------------------------------------------------------- /es6/jsxcad-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/jsxcad-api.js -------------------------------------------------------------------------------- /es6/jsxcad-cache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/jsxcad-cache.js -------------------------------------------------------------------------------- /es6/jsxcad-compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/jsxcad-compiler.js -------------------------------------------------------------------------------- /es6/jsxcad-geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/jsxcad-geometry.js -------------------------------------------------------------------------------- /es6/jsxcad-sys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/jsxcad-sys.js -------------------------------------------------------------------------------- /es6/jsxcad-ui-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/jsxcad-ui-app.js -------------------------------------------------------------------------------- /es6/jsxcad-ui-v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/es6/jsxcad-ui-v1.js -------------------------------------------------------------------------------- /geometry/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /geometry/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/.eslintrc.cjs -------------------------------------------------------------------------------- /geometry/Arc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Arc.js -------------------------------------------------------------------------------- /geometry/Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Box.js -------------------------------------------------------------------------------- /geometry/Curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Curve.js -------------------------------------------------------------------------------- /geometry/Edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Edge.js -------------------------------------------------------------------------------- /geometry/Empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Empty.js -------------------------------------------------------------------------------- /geometry/Group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Group.js -------------------------------------------------------------------------------- /geometry/Hershey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Hershey.js -------------------------------------------------------------------------------- /geometry/Orb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Orb.js -------------------------------------------------------------------------------- /geometry/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Page.js -------------------------------------------------------------------------------- /geometry/Point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Point.js -------------------------------------------------------------------------------- /geometry/Ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Ref.js -------------------------------------------------------------------------------- /geometry/Segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Segment.js -------------------------------------------------------------------------------- /geometry/Segments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/Segments.js -------------------------------------------------------------------------------- /geometry/abstract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/abstract.js -------------------------------------------------------------------------------- /geometry/align.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/align.js -------------------------------------------------------------------------------- /geometry/alignment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/alignment.js -------------------------------------------------------------------------------- /geometry/and.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/and.js -------------------------------------------------------------------------------- /geometry/at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/at.js -------------------------------------------------------------------------------- /geometry/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/base.js -------------------------------------------------------------------------------- /geometry/bb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/bb.js -------------------------------------------------------------------------------- /geometry/bend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/bend.js -------------------------------------------------------------------------------- /geometry/by.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/by.js -------------------------------------------------------------------------------- /geometry/cast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/cast.js -------------------------------------------------------------------------------- /geometry/clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/clip.js -------------------------------------------------------------------------------- /geometry/cloud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/cloud.js -------------------------------------------------------------------------------- /geometry/convexHull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/convexHull.js -------------------------------------------------------------------------------- /geometry/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/copy.js -------------------------------------------------------------------------------- /geometry/corners.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/corners.js -------------------------------------------------------------------------------- /geometry/cut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/cut.js -------------------------------------------------------------------------------- /geometry/deform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/deform.js -------------------------------------------------------------------------------- /geometry/demesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/demesh.js -------------------------------------------------------------------------------- /geometry/dilateXY.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/dilateXY.js -------------------------------------------------------------------------------- /geometry/disjoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/disjoint.js -------------------------------------------------------------------------------- /geometry/drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/drop.js -------------------------------------------------------------------------------- /geometry/each.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/each.js -------------------------------------------------------------------------------- /geometry/eachEdge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/eachEdge.js -------------------------------------------------------------------------------- /geometry/eachPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/eachPoint.js -------------------------------------------------------------------------------- /geometry/extrude.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/extrude.js -------------------------------------------------------------------------------- /geometry/fair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/fair.js -------------------------------------------------------------------------------- /geometry/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/fill.js -------------------------------------------------------------------------------- /geometry/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/fix.js -------------------------------------------------------------------------------- /geometry/flat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/flat.js -------------------------------------------------------------------------------- /geometry/fuse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/fuse.js -------------------------------------------------------------------------------- /geometry/gap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/gap.js -------------------------------------------------------------------------------- /geometry/gauge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/gauge.js -------------------------------------------------------------------------------- /geometry/get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/get.js -------------------------------------------------------------------------------- /geometry/ghost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/ghost.js -------------------------------------------------------------------------------- /geometry/grow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/grow.js -------------------------------------------------------------------------------- /geometry/hasColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/hasColor.js -------------------------------------------------------------------------------- /geometry/hasTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/hasTags.js -------------------------------------------------------------------------------- /geometry/hold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/hold.js -------------------------------------------------------------------------------- /geometry/inItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/inItem.js -------------------------------------------------------------------------------- /geometry/inset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/inset.js -------------------------------------------------------------------------------- /geometry/involute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/involute.js -------------------------------------------------------------------------------- /geometry/iron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/iron.js -------------------------------------------------------------------------------- /geometry/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/join.js -------------------------------------------------------------------------------- /geometry/label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/label.js -------------------------------------------------------------------------------- /geometry/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/link.js -------------------------------------------------------------------------------- /geometry/loft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/loft.js -------------------------------------------------------------------------------- /geometry/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/log.js -------------------------------------------------------------------------------- /geometry/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/main.js -------------------------------------------------------------------------------- /geometry/maskedBy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/maskedBy.js -------------------------------------------------------------------------------- /geometry/masking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/masking.js -------------------------------------------------------------------------------- /geometry/moveAlong.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/moveAlong.js -------------------------------------------------------------------------------- /geometry/noGhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/noGhost.js -------------------------------------------------------------------------------- /geometry/note.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/note.js -------------------------------------------------------------------------------- /geometry/nth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/nth.js -------------------------------------------------------------------------------- /geometry/offset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/offset.js -------------------------------------------------------------------------------- /geometry/on.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/on.js -------------------------------------------------------------------------------- /geometry/orient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/orient.js -------------------------------------------------------------------------------- /geometry/origin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/origin.js -------------------------------------------------------------------------------- /geometry/outline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/outline.js -------------------------------------------------------------------------------- /geometry/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/pack.js -------------------------------------------------------------------------------- /geometry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/package.json -------------------------------------------------------------------------------- /geometry/refine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/refine.js -------------------------------------------------------------------------------- /geometry/remesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/remesh.js -------------------------------------------------------------------------------- /geometry/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/render.js -------------------------------------------------------------------------------- /geometry/repair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/repair.js -------------------------------------------------------------------------------- /geometry/rotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/rotate.js -------------------------------------------------------------------------------- /geometry/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/route.js -------------------------------------------------------------------------------- /geometry/scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/scale.js -------------------------------------------------------------------------------- /geometry/seam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/seam.js -------------------------------------------------------------------------------- /geometry/section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/section.js -------------------------------------------------------------------------------- /geometry/separate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/separate.js -------------------------------------------------------------------------------- /geometry/seq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/seq.js -------------------------------------------------------------------------------- /geometry/serialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/serialize.js -------------------------------------------------------------------------------- /geometry/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/shell.js -------------------------------------------------------------------------------- /geometry/sides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/sides.js -------------------------------------------------------------------------------- /geometry/simplify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/simplify.js -------------------------------------------------------------------------------- /geometry/smooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/smooth.js -------------------------------------------------------------------------------- /geometry/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/tag.js -------------------------------------------------------------------------------- /geometry/tagged/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | *.stl 3 | -------------------------------------------------------------------------------- /geometry/tagged/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /geometry/tagged/op.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/tagged/op.js -------------------------------------------------------------------------------- /geometry/to.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/to.js -------------------------------------------------------------------------------- /geometry/toCoordinates.js: -------------------------------------------------------------------------------- 1 | export { toCoordinates } from './eachPoint.js'; 2 | -------------------------------------------------------------------------------- /geometry/toPoints.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/toPoints.js -------------------------------------------------------------------------------- /geometry/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/transform.js -------------------------------------------------------------------------------- /geometry/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/translate.js -------------------------------------------------------------------------------- /geometry/trim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/trim.js -------------------------------------------------------------------------------- /geometry/turn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/turn.js -------------------------------------------------------------------------------- /geometry/twist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/twist.js -------------------------------------------------------------------------------- /geometry/unfold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/unfold.js -------------------------------------------------------------------------------- /geometry/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/validate.js -------------------------------------------------------------------------------- /geometry/vector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/vector.js -------------------------------------------------------------------------------- /geometry/voxels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/voxels.js -------------------------------------------------------------------------------- /geometry/wrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/geometry/wrap.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/lerna.json -------------------------------------------------------------------------------- /nb/api/Arc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Arc.md -------------------------------------------------------------------------------- /nb/api/Arc.md.$2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Arc.md.$2_1.png -------------------------------------------------------------------------------- /nb/api/Arc.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Arc.md.$3.png -------------------------------------------------------------------------------- /nb/api/Arc.md.$4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Arc.md.$4.png -------------------------------------------------------------------------------- /nb/api/Arc.md.$5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Arc.md.$5.png -------------------------------------------------------------------------------- /nb/api/Arc.md.$6_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Arc.md.$6_1.png -------------------------------------------------------------------------------- /nb/api/Arc.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Arc.nb -------------------------------------------------------------------------------- /nb/api/Assembly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Assembly.md -------------------------------------------------------------------------------- /nb/api/Assembly.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Assembly.nb -------------------------------------------------------------------------------- /nb/api/Cached.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Cached.md -------------------------------------------------------------------------------- /nb/api/Cached.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Cached.nb -------------------------------------------------------------------------------- /nb/api/ChainHull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ChainHull.md -------------------------------------------------------------------------------- /nb/api/ChainHull.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ChainHull.nb -------------------------------------------------------------------------------- /nb/api/Curve.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Curve.md -------------------------------------------------------------------------------- /nb/api/Curve.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Curve.nb -------------------------------------------------------------------------------- /nb/api/Edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Edge.md -------------------------------------------------------------------------------- /nb/api/Edge.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Edge.nb -------------------------------------------------------------------------------- /nb/api/Empty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Empty.md -------------------------------------------------------------------------------- /nb/api/Empty.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Empty.nb -------------------------------------------------------------------------------- /nb/api/Face.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Face.md -------------------------------------------------------------------------------- /nb/api/Face.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Face.md.$2.png -------------------------------------------------------------------------------- /nb/api/Face.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Face.md.$3.png -------------------------------------------------------------------------------- /nb/api/Face.md.$4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Face.md.$4.png -------------------------------------------------------------------------------- /nb/api/Face.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Face.nb -------------------------------------------------------------------------------- /nb/api/Group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Group.md -------------------------------------------------------------------------------- /nb/api/Group.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Group.md.$2.png -------------------------------------------------------------------------------- /nb/api/Group.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Group.nb -------------------------------------------------------------------------------- /nb/api/Hershey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hershey.md -------------------------------------------------------------------------------- /nb/api/Hershey.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hershey.nb -------------------------------------------------------------------------------- /nb/api/Hexagon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hexagon.md -------------------------------------------------------------------------------- /nb/api/Hexagon.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hexagon.nb -------------------------------------------------------------------------------- /nb/api/Hull.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hull.md -------------------------------------------------------------------------------- /nb/api/Hull.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hull.md.$2.png -------------------------------------------------------------------------------- /nb/api/Hull.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hull.md.$3.png -------------------------------------------------------------------------------- /nb/api/Hull.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Hull.nb -------------------------------------------------------------------------------- /nb/api/Icosahedron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Icosahedron.md -------------------------------------------------------------------------------- /nb/api/Icosahedron.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Icosahedron.nb -------------------------------------------------------------------------------- /nb/api/Implicit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Implicit.md -------------------------------------------------------------------------------- /nb/api/Implicit.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Implicit.nb -------------------------------------------------------------------------------- /nb/api/Join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Join.md -------------------------------------------------------------------------------- /nb/api/Join.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Join.md.$2.png -------------------------------------------------------------------------------- /nb/api/Join.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Join.md.$3.png -------------------------------------------------------------------------------- /nb/api/Join.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Join.nb -------------------------------------------------------------------------------- /nb/api/Line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Line.md -------------------------------------------------------------------------------- /nb/api/Line.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Line.md.$2.png -------------------------------------------------------------------------------- /nb/api/Line.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Line.md.$3.png -------------------------------------------------------------------------------- /nb/api/Line.md.$4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Line.md.$4.png -------------------------------------------------------------------------------- /nb/api/Line.md.$5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Line.md.$5.png -------------------------------------------------------------------------------- /nb/api/Line.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Line.nb -------------------------------------------------------------------------------- /nb/api/Link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Link.md -------------------------------------------------------------------------------- /nb/api/Link.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Link.md.$2.png -------------------------------------------------------------------------------- /nb/api/Link.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Link.md.$3.png -------------------------------------------------------------------------------- /nb/api/Link.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Link.nb -------------------------------------------------------------------------------- /nb/api/LoadPng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/LoadPng.md -------------------------------------------------------------------------------- /nb/api/LoadPng.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/LoadPng.nb -------------------------------------------------------------------------------- /nb/api/LoadStl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/LoadStl.md -------------------------------------------------------------------------------- /nb/api/LoadStl.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/LoadStl.nb -------------------------------------------------------------------------------- /nb/api/LoadSvg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/LoadSvg.md -------------------------------------------------------------------------------- /nb/api/LoadSvg.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/LoadSvg.nb -------------------------------------------------------------------------------- /nb/api/Loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Loop.md -------------------------------------------------------------------------------- /nb/api/Loop.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Loop.md.$2.png -------------------------------------------------------------------------------- /nb/api/Loop.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Loop.md.$3.png -------------------------------------------------------------------------------- /nb/api/Loop.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Loop.nb -------------------------------------------------------------------------------- /nb/api/Octagon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Octagon.md -------------------------------------------------------------------------------- /nb/api/Octagon.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Octagon.nb -------------------------------------------------------------------------------- /nb/api/Orb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Orb.md -------------------------------------------------------------------------------- /nb/api/Orb.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Orb.md.$2.png -------------------------------------------------------------------------------- /nb/api/Orb.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Orb.md.$3.png -------------------------------------------------------------------------------- /nb/api/Orb.md.$4_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Orb.md.$4_1.png -------------------------------------------------------------------------------- /nb/api/Orb.md.$5_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Orb.md.$5_2.png -------------------------------------------------------------------------------- /nb/api/Orb.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Orb.nb -------------------------------------------------------------------------------- /nb/api/Page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Page.md -------------------------------------------------------------------------------- /nb/api/Pentagon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Pentagon.md -------------------------------------------------------------------------------- /nb/api/Pentagon.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Pentagon.nb -------------------------------------------------------------------------------- /nb/api/Point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Point.md -------------------------------------------------------------------------------- /nb/api/Point.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Point.md.$2.png -------------------------------------------------------------------------------- /nb/api/Point.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Point.nb -------------------------------------------------------------------------------- /nb/api/Points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Points.md -------------------------------------------------------------------------------- /nb/api/Points.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Points.nb -------------------------------------------------------------------------------- /nb/api/Polygon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Polygon.md -------------------------------------------------------------------------------- /nb/api/Polygon.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Polygon.nb -------------------------------------------------------------------------------- /nb/api/Polyhedron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Polyhedron.md -------------------------------------------------------------------------------- /nb/api/Polyhedron.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Polyhedron.nb -------------------------------------------------------------------------------- /nb/api/Ref.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Ref.md -------------------------------------------------------------------------------- /nb/api/Ref.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Ref.md.$2.png -------------------------------------------------------------------------------- /nb/api/Ref.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Ref.nb -------------------------------------------------------------------------------- /nb/api/Route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Route.md -------------------------------------------------------------------------------- /nb/api/Route.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Route.nb -------------------------------------------------------------------------------- /nb/api/Segments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Segments.md -------------------------------------------------------------------------------- /nb/api/Segments.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Segments.nb -------------------------------------------------------------------------------- /nb/api/Skeleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Skeleton.md -------------------------------------------------------------------------------- /nb/api/Spiral.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Spiral.md -------------------------------------------------------------------------------- /nb/api/Spiral.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Spiral.nb -------------------------------------------------------------------------------- /nb/api/SurfaceMesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/SurfaceMesh.md -------------------------------------------------------------------------------- /nb/api/SurfaceMesh.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/SurfaceMesh.nb -------------------------------------------------------------------------------- /nb/api/Triangle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Triangle.md -------------------------------------------------------------------------------- /nb/api/Triangle.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Triangle.nb -------------------------------------------------------------------------------- /nb/api/Wave.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Wave.md -------------------------------------------------------------------------------- /nb/api/Wave.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Wave.md.$2.png -------------------------------------------------------------------------------- /nb/api/Wave.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/Wave.nb -------------------------------------------------------------------------------- /nb/api/absolute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/absolute.md -------------------------------------------------------------------------------- /nb/api/absolute.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/absolute.nb -------------------------------------------------------------------------------- /nb/api/abstract.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/abstract.md -------------------------------------------------------------------------------- /nb/api/abstract.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/abstract.nb -------------------------------------------------------------------------------- /nb/api/addTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/addTo.md -------------------------------------------------------------------------------- /nb/api/addTo.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/addTo.md.$2.png -------------------------------------------------------------------------------- /nb/api/addTo.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/addTo.md.$3.png -------------------------------------------------------------------------------- /nb/api/addTo.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/addTo.nb -------------------------------------------------------------------------------- /nb/api/align.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.md -------------------------------------------------------------------------------- /nb/api/align.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.md.$2.png -------------------------------------------------------------------------------- /nb/api/align.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.md.$3.png -------------------------------------------------------------------------------- /nb/api/align.md.$4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.md.$4.png -------------------------------------------------------------------------------- /nb/api/align.md.$5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.md.$5.png -------------------------------------------------------------------------------- /nb/api/align.md.$6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.md.$6.png -------------------------------------------------------------------------------- /nb/api/align.md.$7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.md.$7.png -------------------------------------------------------------------------------- /nb/api/align.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/align.nb -------------------------------------------------------------------------------- /nb/api/and.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/and.md -------------------------------------------------------------------------------- /nb/api/and.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/and.md.$2.png -------------------------------------------------------------------------------- /nb/api/and.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/and.nb -------------------------------------------------------------------------------- /nb/api/area.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/area.md -------------------------------------------------------------------------------- /nb/api/area.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/area.md.$2.png -------------------------------------------------------------------------------- /nb/api/area.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/area.md.$3.png -------------------------------------------------------------------------------- /nb/api/area.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/area.nb -------------------------------------------------------------------------------- /nb/api/as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/as.md -------------------------------------------------------------------------------- /nb/api/as.md.$2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/as.md.$2_1.png -------------------------------------------------------------------------------- /nb/api/as.md.$2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/as.md.$2_2.png -------------------------------------------------------------------------------- /nb/api/as.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/as.nb -------------------------------------------------------------------------------- /nb/api/asPart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/asPart.md -------------------------------------------------------------------------------- /nb/api/asPart.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/asPart.nb -------------------------------------------------------------------------------- /nb/api/at.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/at.md -------------------------------------------------------------------------------- /nb/api/at.md.$2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/at.md.$2_1.png -------------------------------------------------------------------------------- /nb/api/at.md.$2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/at.md.$2_2.png -------------------------------------------------------------------------------- /nb/api/at.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/at.nb -------------------------------------------------------------------------------- /nb/api/bb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bb.md -------------------------------------------------------------------------------- /nb/api/bb.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bb.md.$2.png -------------------------------------------------------------------------------- /nb/api/bb.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bb.md.$3.png -------------------------------------------------------------------------------- /nb/api/bb.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bb.nb -------------------------------------------------------------------------------- /nb/api/bend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bend.md -------------------------------------------------------------------------------- /nb/api/bend.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bend.md.$2.png -------------------------------------------------------------------------------- /nb/api/bend.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bend.md.$3.png -------------------------------------------------------------------------------- /nb/api/bend.md.$4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bend.md.$4.png -------------------------------------------------------------------------------- /nb/api/bend.md.$5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bend.md.$5.png -------------------------------------------------------------------------------- /nb/api/bend.md.$6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bend.md.$6.png -------------------------------------------------------------------------------- /nb/api/bend.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bend.nb -------------------------------------------------------------------------------- /nb/api/bom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bom.md -------------------------------------------------------------------------------- /nb/api/bom.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bom.md.$2.png -------------------------------------------------------------------------------- /nb/api/bom.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/bom.nb -------------------------------------------------------------------------------- /nb/api/by.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/by.md -------------------------------------------------------------------------------- /nb/api/by.md.$2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/by.md.$2_1.png -------------------------------------------------------------------------------- /nb/api/by.md.$2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/by.md.$2_2.png -------------------------------------------------------------------------------- /nb/api/by.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/by.nb -------------------------------------------------------------------------------- /nb/api/center.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/center.md -------------------------------------------------------------------------------- /nb/api/centroid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/centroid.md -------------------------------------------------------------------------------- /nb/api/centroid.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/centroid.nb -------------------------------------------------------------------------------- /nb/api/clean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clean.md -------------------------------------------------------------------------------- /nb/api/clean.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clean.nb -------------------------------------------------------------------------------- /nb/api/clip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clip.md -------------------------------------------------------------------------------- /nb/api/clip.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clip.md.$2.png -------------------------------------------------------------------------------- /nb/api/clip.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clip.md.$3.png -------------------------------------------------------------------------------- /nb/api/clip.md.$4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clip.md.$4.png -------------------------------------------------------------------------------- /nb/api/clip.md.$5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clip.md.$5.png -------------------------------------------------------------------------------- /nb/api/clip.md.$6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clip.md.$6.png -------------------------------------------------------------------------------- /nb/api/clip.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clip.nb -------------------------------------------------------------------------------- /nb/api/clipFrom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clipFrom.md -------------------------------------------------------------------------------- /nb/api/clipFrom.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/clipFrom.nb -------------------------------------------------------------------------------- /nb/api/color.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/color.md -------------------------------------------------------------------------------- /nb/api/color.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/color.md.$2.png -------------------------------------------------------------------------------- /nb/api/color.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/color.nb -------------------------------------------------------------------------------- /nb/api/cut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/cut.md -------------------------------------------------------------------------------- /nb/api/cut.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/cut.nb -------------------------------------------------------------------------------- /nb/api/cutFrom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/cutFrom.md -------------------------------------------------------------------------------- /nb/api/cutFrom.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/cutFrom.nb -------------------------------------------------------------------------------- /nb/api/cutOut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/cutOut.md -------------------------------------------------------------------------------- /nb/api/cutOut.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/cutOut.nb -------------------------------------------------------------------------------- /nb/api/deform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/deform.md -------------------------------------------------------------------------------- /nb/api/deform.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/deform.nb -------------------------------------------------------------------------------- /nb/api/demesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/demesh.md -------------------------------------------------------------------------------- /nb/api/demesh.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/demesh.nb -------------------------------------------------------------------------------- /nb/api/diameter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/diameter.md -------------------------------------------------------------------------------- /nb/api/diameter.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/diameter.nb -------------------------------------------------------------------------------- /nb/api/disjoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/disjoint.md -------------------------------------------------------------------------------- /nb/api/disjoint.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/disjoint.nb -------------------------------------------------------------------------------- /nb/api/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/drop.md -------------------------------------------------------------------------------- /nb/api/drop.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/drop.nb -------------------------------------------------------------------------------- /nb/api/e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/e.md -------------------------------------------------------------------------------- /nb/api/e.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/e.md.$2.png -------------------------------------------------------------------------------- /nb/api/e.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/e.nb -------------------------------------------------------------------------------- /nb/api/each.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/each.md -------------------------------------------------------------------------------- /nb/api/each.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/each.nb -------------------------------------------------------------------------------- /nb/api/eachEdge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/eachEdge.md -------------------------------------------------------------------------------- /nb/api/eachEdge.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/eachEdge.nb -------------------------------------------------------------------------------- /nb/api/eachPoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/eachPoint.md -------------------------------------------------------------------------------- /nb/api/eachPoint.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/eachPoint.nb -------------------------------------------------------------------------------- /nb/api/edges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/edges.md -------------------------------------------------------------------------------- /nb/api/edges.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/edges.nb -------------------------------------------------------------------------------- /nb/api/ex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ex.md -------------------------------------------------------------------------------- /nb/api/ex.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ex.md.$2.png -------------------------------------------------------------------------------- /nb/api/ex.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ex.nb -------------------------------------------------------------------------------- /nb/api/ey.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ey.md -------------------------------------------------------------------------------- /nb/api/ey.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ey.md.$2.png -------------------------------------------------------------------------------- /nb/api/ey.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ey.nb -------------------------------------------------------------------------------- /nb/api/ez.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ez.md -------------------------------------------------------------------------------- /nb/api/ez.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ez.md.$2.png -------------------------------------------------------------------------------- /nb/api/ez.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ez.nb -------------------------------------------------------------------------------- /nb/api/f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/f.md -------------------------------------------------------------------------------- /nb/api/f.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/f.md.$2.png -------------------------------------------------------------------------------- /nb/api/f.md.$3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/f.md.$3.png -------------------------------------------------------------------------------- /nb/api/f.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/f.nb -------------------------------------------------------------------------------- /nb/api/faces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/faces.md -------------------------------------------------------------------------------- /nb/api/faces.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/faces.nb -------------------------------------------------------------------------------- /nb/api/fair.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fair.md -------------------------------------------------------------------------------- /nb/api/fair.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fair.nb -------------------------------------------------------------------------------- /nb/api/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fill.md -------------------------------------------------------------------------------- /nb/api/fill.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fill.nb -------------------------------------------------------------------------------- /nb/api/fit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fit.md -------------------------------------------------------------------------------- /nb/api/fit.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fit.nb -------------------------------------------------------------------------------- /nb/api/fitTo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fitTo.md -------------------------------------------------------------------------------- /nb/api/fitTo.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fitTo.nb -------------------------------------------------------------------------------- /nb/api/flat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/flat.md -------------------------------------------------------------------------------- /nb/api/flat.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/flat.nb -------------------------------------------------------------------------------- /nb/api/fuse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fuse.md -------------------------------------------------------------------------------- /nb/api/fuse.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/fuse.nb -------------------------------------------------------------------------------- /nb/api/gauge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/gauge.md -------------------------------------------------------------------------------- /nb/api/gauge.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/gauge.nb -------------------------------------------------------------------------------- /nb/api/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/get.md -------------------------------------------------------------------------------- /nb/api/get.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/get.nb -------------------------------------------------------------------------------- /nb/api/getNot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/getNot.md -------------------------------------------------------------------------------- /nb/api/getNot.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/getNot.nb -------------------------------------------------------------------------------- /nb/api/ghost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ghost.md -------------------------------------------------------------------------------- /nb/api/ghost.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/ghost.nb -------------------------------------------------------------------------------- /nb/api/grow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/grow.md -------------------------------------------------------------------------------- /nb/api/grow.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/grow.nb -------------------------------------------------------------------------------- /nb/api/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/image.md -------------------------------------------------------------------------------- /nb/api/image.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/image.nb -------------------------------------------------------------------------------- /nb/api/in.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/in.md -------------------------------------------------------------------------------- /nb/api/in.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/in.md.$2.png -------------------------------------------------------------------------------- /nb/api/in.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/in.nb -------------------------------------------------------------------------------- /nb/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/index.md -------------------------------------------------------------------------------- /nb/api/index.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/index.nb -------------------------------------------------------------------------------- /nb/api/inset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/inset.md -------------------------------------------------------------------------------- /nb/api/inset.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/inset.nb -------------------------------------------------------------------------------- /nb/api/involute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/involute.md -------------------------------------------------------------------------------- /nb/api/involute.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/involute.nb -------------------------------------------------------------------------------- /nb/api/iron.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/iron.md -------------------------------------------------------------------------------- /nb/api/iron.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/iron.nb -------------------------------------------------------------------------------- /nb/api/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/join.md -------------------------------------------------------------------------------- /nb/api/join.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/join.nb -------------------------------------------------------------------------------- /nb/api/link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/link.md -------------------------------------------------------------------------------- /nb/api/link.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/link.nb -------------------------------------------------------------------------------- /nb/api/loft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/loft.md -------------------------------------------------------------------------------- /nb/api/loft.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/loft.nb -------------------------------------------------------------------------------- /nb/api/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/log.md -------------------------------------------------------------------------------- /nb/api/log.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/log.nb -------------------------------------------------------------------------------- /nb/api/loop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/loop.md -------------------------------------------------------------------------------- /nb/api/loop.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/loop.nb -------------------------------------------------------------------------------- /nb/api/m.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/m.md -------------------------------------------------------------------------------- /nb/api/m.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/m.md.$2.png -------------------------------------------------------------------------------- /nb/api/m.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/m.nb -------------------------------------------------------------------------------- /nb/api/mask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/mask.md -------------------------------------------------------------------------------- /nb/api/masked.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/masked.md -------------------------------------------------------------------------------- /nb/api/masked.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/masked.nb -------------------------------------------------------------------------------- /nb/api/masking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/masking.md -------------------------------------------------------------------------------- /nb/api/masking.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/masking.nb -------------------------------------------------------------------------------- /nb/api/material.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/material.md -------------------------------------------------------------------------------- /nb/api/material.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/material.nb -------------------------------------------------------------------------------- /nb/api/md.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/md.md -------------------------------------------------------------------------------- /nb/api/md.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/md.nb -------------------------------------------------------------------------------- /nb/api/move.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/move.md -------------------------------------------------------------------------------- /nb/api/move.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/move.nb -------------------------------------------------------------------------------- /nb/api/moveAlong.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/moveAlong.md -------------------------------------------------------------------------------- /nb/api/moveAlong.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/moveAlong.nb -------------------------------------------------------------------------------- /nb/api/n.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/n.md -------------------------------------------------------------------------------- /nb/api/n.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/n.nb -------------------------------------------------------------------------------- /nb/api/noOp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/noOp.md -------------------------------------------------------------------------------- /nb/api/noOp.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/noOp.nb -------------------------------------------------------------------------------- /nb/api/noVoid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/noVoid.md -------------------------------------------------------------------------------- /nb/api/noVoid.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/noVoid.nb -------------------------------------------------------------------------------- /nb/api/normal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/normal.md -------------------------------------------------------------------------------- /nb/api/normal.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/normal.nb -------------------------------------------------------------------------------- /nb/api/note.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/note.md -------------------------------------------------------------------------------- /nb/api/note.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/note.nb -------------------------------------------------------------------------------- /nb/api/nth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/nth.md -------------------------------------------------------------------------------- /nb/api/nth.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/nth.nb -------------------------------------------------------------------------------- /nb/api/offset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/offset.md -------------------------------------------------------------------------------- /nb/api/offset.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/offset.nb -------------------------------------------------------------------------------- /nb/api/on.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/on.md -------------------------------------------------------------------------------- /nb/api/on.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/on.nb -------------------------------------------------------------------------------- /nb/api/op.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/op.md -------------------------------------------------------------------------------- /nb/api/op.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/op.md.$2.png -------------------------------------------------------------------------------- /nb/api/op.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/op.nb -------------------------------------------------------------------------------- /nb/api/origin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/origin.md -------------------------------------------------------------------------------- /nb/api/origin.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/origin.nb -------------------------------------------------------------------------------- /nb/api/outline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/outline.md -------------------------------------------------------------------------------- /nb/api/outline.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/outline.nb -------------------------------------------------------------------------------- /nb/api/overlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/overlay.md -------------------------------------------------------------------------------- /nb/api/overlay.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/overlay.nb -------------------------------------------------------------------------------- /nb/api/pack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/pack.md -------------------------------------------------------------------------------- /nb/api/pack.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/pack.nb -------------------------------------------------------------------------------- /nb/api/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/page.md -------------------------------------------------------------------------------- /nb/api/png.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/png.md -------------------------------------------------------------------------------- /nb/api/png.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/png.nb -------------------------------------------------------------------------------- /nb/api/points.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/points.md -------------------------------------------------------------------------------- /nb/api/points.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/points.nb -------------------------------------------------------------------------------- /nb/api/random.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/random.md -------------------------------------------------------------------------------- /nb/api/remesh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/remesh.md -------------------------------------------------------------------------------- /nb/api/remesh.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/remesh.nb -------------------------------------------------------------------------------- /nb/api/route.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/route.md -------------------------------------------------------------------------------- /nb/api/route.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/route.nb -------------------------------------------------------------------------------- /nb/api/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/scale.md -------------------------------------------------------------------------------- /nb/api/scale.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/scale.nb -------------------------------------------------------------------------------- /nb/api/seam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/seam.md -------------------------------------------------------------------------------- /nb/api/seam.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/seam.nb -------------------------------------------------------------------------------- /nb/api/section.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/section.md -------------------------------------------------------------------------------- /nb/api/section.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/section.nb -------------------------------------------------------------------------------- /nb/api/separate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/separate.md -------------------------------------------------------------------------------- /nb/api/separate.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/separate.nb -------------------------------------------------------------------------------- /nb/api/seq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/seq.md -------------------------------------------------------------------------------- /nb/api/seq.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/seq.nb -------------------------------------------------------------------------------- /nb/api/shadow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/shadow.md -------------------------------------------------------------------------------- /nb/api/shadow.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/shadow.nb -------------------------------------------------------------------------------- /nb/api/simplify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/simplify.md -------------------------------------------------------------------------------- /nb/api/simplify.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/simplify.nb -------------------------------------------------------------------------------- /nb/api/size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/size.md -------------------------------------------------------------------------------- /nb/api/size.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/size.nb -------------------------------------------------------------------------------- /nb/api/skeleton.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/skeleton.md -------------------------------------------------------------------------------- /nb/api/sketch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sketch.md -------------------------------------------------------------------------------- /nb/api/sketch.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sketch.nb -------------------------------------------------------------------------------- /nb/api/smooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/smooth.md -------------------------------------------------------------------------------- /nb/api/smooth.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/smooth.nb -------------------------------------------------------------------------------- /nb/api/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sort.md -------------------------------------------------------------------------------- /nb/api/sort.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sort.nb -------------------------------------------------------------------------------- /nb/api/sx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sx.md -------------------------------------------------------------------------------- /nb/api/sx.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sx.md.$2.png -------------------------------------------------------------------------------- /nb/api/sx.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sx.nb -------------------------------------------------------------------------------- /nb/api/sy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sy.md -------------------------------------------------------------------------------- /nb/api/sy.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sy.md.$2.png -------------------------------------------------------------------------------- /nb/api/sy.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sy.nb -------------------------------------------------------------------------------- /nb/api/sz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sz.md -------------------------------------------------------------------------------- /nb/api/sz.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sz.md.$2.png -------------------------------------------------------------------------------- /nb/api/sz.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/sz.nb -------------------------------------------------------------------------------- /nb/api/table.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/table.md -------------------------------------------------------------------------------- /nb/api/table.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/table.nb -------------------------------------------------------------------------------- /nb/api/tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/tag.md -------------------------------------------------------------------------------- /nb/api/tag.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/tag.nb -------------------------------------------------------------------------------- /nb/api/tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/tags.md -------------------------------------------------------------------------------- /nb/api/tags.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/tags.nb -------------------------------------------------------------------------------- /nb/api/tint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/tint.md -------------------------------------------------------------------------------- /nb/api/tint.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/tint.nb -------------------------------------------------------------------------------- /nb/api/to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/to.md -------------------------------------------------------------------------------- /nb/api/to.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/to.md.$2.png -------------------------------------------------------------------------------- /nb/api/to.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/to.nb -------------------------------------------------------------------------------- /nb/api/toolpath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/toolpath.md -------------------------------------------------------------------------------- /nb/api/toolpath.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/toolpath.nb -------------------------------------------------------------------------------- /nb/api/trim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/trim.md -------------------------------------------------------------------------------- /nb/api/trim.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/trim.nb -------------------------------------------------------------------------------- /nb/api/twist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/twist.md -------------------------------------------------------------------------------- /nb/api/twist.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/twist.nb -------------------------------------------------------------------------------- /nb/api/unfold.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/unfold.md -------------------------------------------------------------------------------- /nb/api/unfold.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/unfold.nb -------------------------------------------------------------------------------- /nb/api/untag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/untag.md -------------------------------------------------------------------------------- /nb/api/untag.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/untag.nb -------------------------------------------------------------------------------- /nb/api/view.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/view.md -------------------------------------------------------------------------------- /nb/api/view.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/view.nb -------------------------------------------------------------------------------- /nb/api/void.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/void.md -------------------------------------------------------------------------------- /nb/api/void.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/void.nb -------------------------------------------------------------------------------- /nb/api/volume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/volume.md -------------------------------------------------------------------------------- /nb/api/volume.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/volume.nb -------------------------------------------------------------------------------- /nb/api/voxels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/voxels.md -------------------------------------------------------------------------------- /nb/api/voxels.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/voxels.nb -------------------------------------------------------------------------------- /nb/api/wrap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/wrap.md -------------------------------------------------------------------------------- /nb/api/wrap.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/wrap.nb -------------------------------------------------------------------------------- /nb/api/x.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/x.md -------------------------------------------------------------------------------- /nb/api/x.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/x.md.$2.png -------------------------------------------------------------------------------- /nb/api/x.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/x.nb -------------------------------------------------------------------------------- /nb/api/y.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/y.md -------------------------------------------------------------------------------- /nb/api/y.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/y.md.$2.png -------------------------------------------------------------------------------- /nb/api/y.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/y.nb -------------------------------------------------------------------------------- /nb/api/z.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/z.md -------------------------------------------------------------------------------- /nb/api/z.md.$2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/z.md.$2.png -------------------------------------------------------------------------------- /nb/api/z.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/api/z.nb -------------------------------------------------------------------------------- /nb/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/index.md -------------------------------------------------------------------------------- /nb/index.nb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/index.nb -------------------------------------------------------------------------------- /nb/projects/pentacular/api/Edge.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/api/Edge.nb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/api/absolute.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/api/absolute.nb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/api/eachEdge.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/api/eachEdge.nb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/belt_sprokets/belt_sprokets.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/belt_sprokets/belt_sprokets.nb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/mold/mold.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/monocle/monocle.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/openforge/openforge.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/openforge/tiles.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/plots/flowers.flowers_0.gcode: -------------------------------------------------------------------------------- 1 | 2 | G21 3 | G90 4 | M3 5 | M5 6 | -------------------------------------------------------------------------------- /nb/projects/pentacular/plots/mandala.mandala_0.gcode: -------------------------------------------------------------------------------- 1 | 2 | G21 3 | G90 4 | M3 5 | M5 6 | -------------------------------------------------------------------------------- /nb/projects/pentacular/plots/spiral.spiral_0.gcode: -------------------------------------------------------------------------------- 1 | 2 | G21 3 | G90 4 | M3 5 | M5 6 | -------------------------------------------------------------------------------- /nb/projects/pentacular/plots/stars.stars_0.gcode: -------------------------------------------------------------------------------- 1 | 2 | G21 3 | G90 4 | M3 5 | M5 6 | -------------------------------------------------------------------------------- /nb/projects/pentacular/plots/visnezh.visnezh_0.gcode: -------------------------------------------------------------------------------- 1 | 2 | G21 3 | G90 4 | M3 5 | M5 6 | -------------------------------------------------------------------------------- /nb/projects/pentacular/saucer/saucer.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/projects/pentacular/train/train.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/regression/smooth.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nb/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/nb/start.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/package.json -------------------------------------------------------------------------------- /publish-es6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/publish-es6.sh -------------------------------------------------------------------------------- /publish-wasm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/publish-wasm.sh -------------------------------------------------------------------------------- /server/ws/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/server/ws/.babelrc -------------------------------------------------------------------------------- /server/ws/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/server/ws/client.js -------------------------------------------------------------------------------- /server/ws/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/server/ws/server.js -------------------------------------------------------------------------------- /server/ws/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/server/ws/worker.js -------------------------------------------------------------------------------- /sys/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /sys/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/.eslintrc.cjs -------------------------------------------------------------------------------- /sys/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /sys/ask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/ask.js -------------------------------------------------------------------------------- /sys/boot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/boot.js -------------------------------------------------------------------------------- /sys/broadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/broadcast.js -------------------------------------------------------------------------------- /sys/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/config.js -------------------------------------------------------------------------------- /sys/control.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/control.js -------------------------------------------------------------------------------- /sys/conversation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/conversation.js -------------------------------------------------------------------------------- /sys/create-hash.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/create-hash.cjs -------------------------------------------------------------------------------- /sys/db-idb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/db-idb.js -------------------------------------------------------------------------------- /sys/db.js: -------------------------------------------------------------------------------- 1 | export { clearCacheDb, db } from './db-idb.js'; 2 | -------------------------------------------------------------------------------- /sys/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /sys/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/document.js -------------------------------------------------------------------------------- /sys/emit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/emit.js -------------------------------------------------------------------------------- /sys/encode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/encode.js -------------------------------------------------------------------------------- /sys/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/error.js -------------------------------------------------------------------------------- /sys/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/files.js -------------------------------------------------------------------------------- /sys/filesystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/filesystem.js -------------------------------------------------------------------------------- /sys/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/hash.js -------------------------------------------------------------------------------- /sys/listFiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/listFiles.js -------------------------------------------------------------------------------- /sys/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/log.js -------------------------------------------------------------------------------- /sys/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/main.js -------------------------------------------------------------------------------- /sys/nodeWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/nodeWorker.js -------------------------------------------------------------------------------- /sys/null.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/null.test.js -------------------------------------------------------------------------------- /sys/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/package.json -------------------------------------------------------------------------------- /sys/pending.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/pending.js -------------------------------------------------------------------------------- /sys/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/profile.js -------------------------------------------------------------------------------- /sys/read.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/read.js -------------------------------------------------------------------------------- /sys/read.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/read.test.js -------------------------------------------------------------------------------- /sys/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/remove.js -------------------------------------------------------------------------------- /sys/remove.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/remove.test.js -------------------------------------------------------------------------------- /sys/rollup_main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/rollup_main.js -------------------------------------------------------------------------------- /sys/self.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/self.js -------------------------------------------------------------------------------- /sys/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/service.js -------------------------------------------------------------------------------- /sys/servicePool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/servicePool.js -------------------------------------------------------------------------------- /sys/sleep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/sleep.js -------------------------------------------------------------------------------- /sys/testdata/hello.txt: -------------------------------------------------------------------------------- 1 | Hello 2 | -------------------------------------------------------------------------------- /sys/watchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/watchers.js -------------------------------------------------------------------------------- /sys/webWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/webWorker.js -------------------------------------------------------------------------------- /sys/write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/sys/write.js -------------------------------------------------------------------------------- /ui/app/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/.babelrc -------------------------------------------------------------------------------- /ui/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/App.js -------------------------------------------------------------------------------- /ui/app/Cnc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/Cnc.js -------------------------------------------------------------------------------- /ui/app/EditNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/EditNote.js -------------------------------------------------------------------------------- /ui/app/ErrorNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/ErrorNote.js -------------------------------------------------------------------------------- /ui/app/IconNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/IconNote.js -------------------------------------------------------------------------------- /ui/app/Make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/Make.js -------------------------------------------------------------------------------- /ui/app/MdNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/MdNote.js -------------------------------------------------------------------------------- /ui/app/Notebook.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/Notebook.css -------------------------------------------------------------------------------- /ui/app/Notebook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/Notebook.js -------------------------------------------------------------------------------- /ui/app/OrbitView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/OrbitView.js -------------------------------------------------------------------------------- /ui/app/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/Section.js -------------------------------------------------------------------------------- /ui/app/ViewNote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/ViewNote.js -------------------------------------------------------------------------------- /ui/app/master.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/master.js -------------------------------------------------------------------------------- /ui/app/null.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/null.test.js -------------------------------------------------------------------------------- /ui/app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/package.json -------------------------------------------------------------------------------- /ui/app/schedule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/schedule.js -------------------------------------------------------------------------------- /ui/app/webworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/app/webworker.js -------------------------------------------------------------------------------- /ui/notebook/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ui/notebook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/notebook/main.js -------------------------------------------------------------------------------- /ui/threejs/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /ui/threejs/README.md: -------------------------------------------------------------------------------- 1 | UNSTABLE -- DO NOT USE. 2 | -------------------------------------------------------------------------------- /ui/threejs/dist/.gitignore: -------------------------------------------------------------------------------- 1 | main.js 2 | -------------------------------------------------------------------------------- /ui/threejs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/threejs/main.js -------------------------------------------------------------------------------- /ui/threejs/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/threejs/util.js -------------------------------------------------------------------------------- /ui/threejs/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/threejs/view.js -------------------------------------------------------------------------------- /ui/threejs/voxel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsxcad/JSxCAD/HEAD/ui/threejs/voxel.js -------------------------------------------------------------------------------- /ui/v1-auth/.babelrc: -------------------------------------------------------------------------------- 1 | {} 2 | --------------------------------------------------------------------------------