Capítulo 580 de 859

Chapter 580: OBJExporter

Core Idea

An exporter for OBJ.

OBJExporter is not able to export material data into MTL files so only geometry data are supported.

Code Examples

const exporter = new OBJExporter();
const data = exporter.parse( scene );
  • What it demonstrates: Typical usage of OBJExporter.

Reference Tables

Constructor

Signature
new OBJExporter()

Methods

MethodDescription
.parse( object : Object3D ) : stringParses the given 3D object and generates the OBJ output.

Key Takeaways

  1. Key methods: parse.

Connects To