The saveObj()
function exports p5.Geometry
objects as 3D models in the Wavefront .obj file format. This way, you can use the 3D shapes you create in p5.js in other software for rendering, animation, 3D printing, or more.
The exported .obj file will include the faces and vertices of the p5.Geometry
, as well as its texture coordinates and normals, if it has them.
Examples
Syntax
saveObj([fileName])
Parameters
fileName
String:
The name of the file to save the model as. If not specified, the default file name will be 'model.obj'.
This page is generated from the comments in src/webgl/p5.Geometry.js . Please feel free to edit it and submit a pull request!