-
-
Notifications
You must be signed in to change notification settings - Fork 183
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
threeversion: 0.129nodeversion: 12.16.0npmversion: 6.13.4
Problem description:
I think the parse method of the IFCLoader should return something and not void, isn't it @agviegas? For instance with the ColladaLoader, the user can directly use the parse method with the content of the Collada file as a string or a Buffer.
I saw you recently updated the typings for your library, but this remained untouched.
From what I read in the code, I think it outputs a Mesh (i.e. the output of the function generateAllGeometriesByMaterial).
Relevant code:
parse(data: ArrayBuffer | string): void;Suggested solution:
parse(data: ArrayBuffer | string): Mesh;Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working