$ npm install svg-3d-simplicial-complexRenders a simplicial complex to a list of
var bunny = require("bunny")
var mat4 = require("gl-matrix").mat4
var render = require("svg-3d-simplicial-complex")
console.log('<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512"version="1.1">')
console.log(render(bunny.cells, bunny.positions, {
view: mat4.lookAt(mat4.create(), [5, 10, 20], [0,2,0], [0,1,0]),
projection: mat4.perspective(mat4.create(),
Math.PI/4.0,
1.0,
0.1,
1000.0),
viewport: [[0,0], [512,512]]
}))
console.log("</svg>")
Output svg:
npm install svg-3d-simplicial-complex
require("svg-3d-simplicial-complex")(cells,positions,[,options])Renders a simplicial complex as a list of
cells is an indexed list of facets
positions is a list of vertex positions
options is an object that has the following optional properties:
model the model matrix for the cameraview the view matrix for the cameraprojection the projection matrix for the cameraviewport the viewport for the rendered svgConventions for camera and viewport follow those from WebGL
Returns A string of <polygon> svg elements that renders the simplicial complex.
(c) 2014 Mikola Lysenko. MIT License