@antonymarion/node-occ

OpenCascade OCCT Wrapper for Node js

Usage no npm install needed!

<script type="module">
  import antonymarionNodeOcc from 'https://cdn.skypack.dev/@antonymarion/node-occ';
</script>

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 CircleCI

quick example

var occ = require('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 Windows

>SET CL=/Ic:\OCE-0.17\include\oce
>SET LINK=/LIBPATH:c:\OCE-0.17\Win32\lib
>PATH c:\OCE-0.17\Win32\bin;%PATH%
>npm install node-occ

on Linux

on ubuntu


# 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 -g

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

# ------------------------------------
git clone --recursive https://github.com/erossignon/node-occ.git
cd node-occ
sh prepare_build.sh
npm install
node-pre-gyp configure
node-pre-gyp build
mocha

on windows

  • follow the tutorial in the wiki

dependencies:

acknowledgement:

MIT License

Copyright © 2012-2015 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.