@metacell/geppetto-meta-ui
Version:
React components from geppetto-meta to create neuroscience applications and visualize data.
13 lines (12 loc) • 638 B
TypeScript
export class OBJLoader extends Loader<any, string> {
constructor(manager: any);
materials: any;
load(url: any, onLoad: any, onProgress: any, onError: any): void;
setMaterials(materials: any): OBJLoader;
createMesh(vertices: any, color: any, texture: any): Points<any, PointsMaterial, import("three").Object3DEventMap>;
parse(text: any, texture: any): Group<import("three").Object3DEventMap>;
}
import { Loader } from "three/src/loaders/Loader";
import { PointsMaterial } from "three/src/materials/PointsMaterial";
import { Points } from "three/src/objects/Points";
import { Group } from "three/src/objects/Group";