Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

bunny

mikolalysenko904Public Domain1.0.1

The Stanford bunny

bunny, 3d, model, scan, test, data, mesh, triangle

readme

bunny

It's the Stanford bunny! To use it in your projects do

npm install bunny

And then you can access the vertices/faces of the mesh as follows:

var bunny = require("bunny");
var positions = bunny.positions;
var faces = bunny.faces;

That's pretty much it.

Credits

The infamous bunny is part of the Stanford 3D scanning repository. For a short history, see Greg Turk's page.