Code Monkey home page Code Monkey logo

lgp.js's Introduction

Lets Get [ 2D & 3D ] Printing in Javascript

Synopsis

lgp.js is a javascript library that helps read & write popular 3D printing file formats (obj, stl). It also helps to write out images and svg paths for laser etching and cutting. Easy file reading and writing is powered by lgp.js' file reader and writer.

Code Examples

The example below shows how to write out an .obj and stl file:

var lgp = require('lgp');

var verts = [[0,0,0],[1,0,0],[1,1,0],[0,1,0]];
var indis = [[0,1,2],[0,2,3]];

lgp.fileWriter( "filename.stl", lgp.stlSerializer( {
  positions: verts,
  cells: indis
} ) );

lgp.fileWriter( "filename.obj", lgp.objSerializer( {
  positions: verts,
  cells: indis
} ) );

The example below shows how to read in an .obj file:

var lgp = require('lgp');
lgp.fileReader( 'models/cube.obj', function parseObj( text ) {  
  var results = lgp.objDeserializer( text, { flipYZ: false, scale: 1.0 } );
  var positions = results.positions;
  var cells = results.cells;
  // you can do whatever you want here
} );

The example below shows how to read in an .obj file:

var lgp = require('lgp');
lgp.fileReader( 'models/cube.obj', function parseObj( text ) {  
  var results = lgp.objDeserializer( text, { flipYZ: false, scale: 1.0 } );
  var positions = results.positions;
  var cells = results.cells;
  // make your wildest dreams come true
} );

Loading an stl is done in exactly the same manner, except you would use lgp.stlDeserializer;

The example below shows how to write out an image from a HTML canvas element:

var lgp = require('lgp');
lgp.imageWriter( 'filename.png', canvas.toDataURL('image/png') );

The example below shows how to write out a svg path:

var lgp = require('lgp');
var path = [[0,0,0],[1,0,0],[1,1,0],[0,1,0]];
lgp.fileWriter( "filename.svg", lgp.svgSerializer( { polygon: path, strokeWidth: 0.1 } ) );

Motivation

This library is part of a larger project / series of libraries that aspires to bring computational design and digital fabrication to the web. This library aspires to be the ultimate file reader & writer that enable higher level computational design, 3d printing, g-code generation, cnc milling tool path creation, laser cutting paths, robotic motion planning, and more.

Build Requirements

node.js (4.4.0+) & npm

Installation

You can add this library to your project by running:

npm install --save https://github.com/YCAMInterlab/lgp.js.git

or via npm:

npm install --save lgp

Examples

See https://github.com/rezaali/webgl-sketches/tree/master/hull

Contribution

Copyright 2015-2016 Reza Ali co-developed by YCAMInterLab during the Guest Research Project v.3

License

Apache-2.0

lgp.js's People

Contributors

rezaali avatar konnokeina avatar

Stargazers

 avatar Paul G avatar Mark Hindess avatar Owen Trueblood avatar Szymon Kaliski avatar Carlo Q avatar TENSORTALK avatar Adam Ferriss avatar 子龙 avatar Gottfried Haider avatar Yannick Assogba avatar  avatar AKA avatar mactkg avatar

Watchers

Takayuki Ito avatar James Cloos avatar  avatar  avatar

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.