|
1234567891011121314151617181920212223242526272829303132 |
- ---
- prev:
- text: 'GLTFKHRMaterialVariantsPlugin'
- link: './GLTFKHRMaterialVariantsPlugin'
-
- next:
- text: 'PLYLoadPlugin'
- link: './PLYLoadPlugin'
-
- ---
-
- # Rhino3dmLoadPlugin
-
- [Example](https://threepipe.org/examples/#rhino3dm-load/) —
- [Source Code](https://github.com/repalash/threepipe/blob/master/src/plugins/import/Rhino3dmLoadPlugin.ts) —
- [API Reference](https://threepipe.org/docs/classes/Rhino3dmLoadPlugin.html)
-
- Adds support for loading .3dm files generated by [Rhino 3D](https://www.rhino3d.com/). This plugin includes some changes with how 3dm files are loaded in three.js. The changes are around loading layer and primitive properties when set as reference in the 3dm files.
-
- It also adds some helpful options to process the model after load.
-
- ```typescript
- import {Rhino3dmLoadPlugin} from 'threepipe'
- const rhino3dmPlugin = viewer.addPluginSync(new Rhino3dmLoadPlugin())
-
- rhino3dmPlugin.importMaterials = true // import materials source from 3dm file
- rhino3dmPlugin.forceLayerMaterials = true // force material source to be layer in 3dm file.
- rhino3dmPlugin.hideLineMesh = true // hide all lines and points in the model.
- rhino3dmPlugin.replaceWithInstancedMesh = true // replace meshes with the same parent, geometry and material with a single instance mesh.
-
- const mesh = await viewer.load('file.3dm')
- ```
|