MCPcopy Index your code
hub / github.com/OpenWebCAD/node-occ

github.com/OpenWebCAD/node-occ @1.0.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release 1.0.1 ↗ · + Follow
390 symbols 768 edges 79 files 13 documented · 3%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

node-occ

OpenCascade nodejs extension for solid modeling.

This nodejs extension provides solid construction to nodejs. It provides a simple yet powerful javascript api to construct 3D geometry models.

This project comes with a set of V8 wrappers around OpenCascade API and a sample web application.

Build Status Build status

quick example

var occ = require("node-occ").occ;

// construct a box
var box = occ.makeBox([0, 0, 0], [100, 100, 50]);

// construct a cylinder
var cyl = occ.makeCylinder([50, 50, -10], [50, 50, 60], 40);

// cut the box with cylinder
box = occ.cut(box, cyl);

// save result to a STEP file
occ.writeSTEP("somefile.step", box);

video

node occ

list of features

  • creation of basic shapes ( box, cylinder , cone , torus )
  • boolean operation ( fuse , common , cut )
  • features ( draftAngle)
  • solid properties ( faces, edges, vertices, area , volume )
  • import export ( STEP BREP )

sample web application

node-occ-sample: sample nodejs/express REST API server to build solid , based on threejs

installing node-occ from npm

$npm install node-occ

building node-occ from source : prerequisites

on (linux Ubuntu

(use nodejs 12 or 14)

# installing nodejs and gyp utility to build extensions
sudo apt-get install nodejs npm
sudo npm install node-pre-gyp -g
sudo npm install mocha@7 -g

#installing cmake
sudo apt-get install cmake cmake-curses-gui g++ build-essential libtbb2

# ------------------------------------
git clone --recursive https://github.com/erossignon/node-occ.git
cd node-occ

# download prebuild OpenCascade Library and header files
bash ./prepare_node.sh

#
export OCCT_PACKAGE=occt-7.2.0
export LD_LIBRARY_PATH=`pwd`/${OCCT_PACKAGE}/lib:$LD_LIBRARY_PATH
npm install --build-from-source

# verify that everything is working OK
make test

on windows

  • follow the tutorial in the wiki

dependencies:

  • threejs : https://github.com/mrdoob/three.js

acknowledgement:

  • OpenCascade : http://www.opencascade.org
  • occmodel : https://github.com/tenko/occmodel
  • ShapeSmith : https://github.com/bjnortier/shapesmith

MIT License

Copyright © 2012-2019 E. Rossignon

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Core symbols most depended-on inside this repo

getShapeName
called by 73
src/ShapeFactory.cc
ReadDouble
called by 43
src/Util.cc
ReadPoint
called by 29
src/Util.cc
setShape
called by 27
src/Wire.cc
Shape
called by 25
src/Shape.h
makeInstance
called by 21
src/Util.h
test_with
called by 18
test/test_meshSolid.js
_registerNamedShape
called by 16
src/Solid.cc

Shape

Function 173
Method 170
Class 44
Enum 3

Languages

C++76%
TypeScript24%

Modules by API surface

src/ShapeFactory.cc36 symbols
src/Tools.cc25 symbols
lib/fastbuilder.js19 symbols
jasmine-1.1.0.js18 symbols
src/Util.h17 symbols
src/Face.cc17 symbols
src/Edge.cc17 symbols
src/Mesh.cc16 symbols
src/Solid.cc14 symbols
src/Point3Wrap.h10 symbols
src/Base.cc10 symbols
src/AsyncWorkerWithProgress.h10 symbols

For agents

$ claude mcp add node-occ \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact