Newer
Older
HuangJiPC / public / static / three / examples / jsm / exporters / STLExporter.d.ts
@zhangdeliang zhangdeliang on 21 Jun 221 bytes update
import { Object3D } from '../../../src/Three';

export interface STLExporterOptions {
	binary?: boolean;
}

export class STLExporter {

	constructor();

	parse( scene: Object3D, options?: STLExporterOptions ): string;

}