GithubHelp home page GithubHelp logo

headless-three's Introduction

headless-three

This library is for rendering CAD models in three.js sceens in a headless environment.

Supported formats: bld, fbx, glb, ifc, obj, pdb, stl, xyz.

See src/Filetypes.js for current listing

Discuss in our Discord #headless-three

Setup

Requires Node v18+.

$ yarn install
$ yarn test

Run

Run the headless server:

$ yarn serve
...

Docker server

To run the server locally, you will need a working Docker installation.

$ docker compose build   # Build the Docker image
$ docker compose up -d   # Start the server, accessible at http://localhost:8001

Client Requests

Send a render request pointing to a CAD file URL:

$ curl -d '{"url": "https://github.com/bldrs-ai/headless-three/blob/main/models/ifc/index.ifc"}' \
       -H 'content-type: application/json' \
       -o rendered.png \
       http://localhost:8001/render

Example render of index.ifc: index.ifc rendered to index.png Bunny.obj rendered to Bunny.png

Local Server Test script

for f in `ls models/*/*.{bld,fbx,ifc,obj,stl,pdb,xyz}` ; do
  curl -f -d "{\"url\": \"http://localhost:8090/$f\"}" \
       -H 'content-type: application/json' \
       -o "$f"-fit.png --fail --silent --show-error \
       -D- http://localhost:8001/render > log ;
  grep -q '200 OK' log || /bin/mv -f log $f.err ;
done

Design

dataflow

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.