UNPKG

voxel-view

Version:

a default camera & renderer for voxeljs

19 lines (12 loc) 391 B
# view for voxeljs this module handles a lot of the boilerplate involved with setting up three.js ## installation ``` npm install voxel-view ``` ## usage ```js var voxelView = require('voxel-view') var view = voxelView(THREE, { width: 500, height: 500 }) ``` note: you have to pass in your own existing three.js instance since three.js breaks if you try to require() it more than once