Hi,
I want to open ‘rvt’ file in the 3d viewer.
Is there any way to open it in the Three.js.?
Thanks,
Rahul Yadav
Hi,
I want to open ‘rvt’ file in the 3d viewer.
Is there any way to open it in the Three.js.?
Thanks,
Rahul Yadav
There isn’t currently an importer / parser for revit files, there’s an interesting thread here… Our customer wants a Revit supported file format - #7 by amitlzkpa tldr: you’d have to create your own importer that parses the revit data into readable objects that three.js understands, depending what’s in the revit file you may find yourself trying to align data structures that are world’s apart…
One option would be to convert your models to ifc (if at all possible) and use three.js webgl - IFCLoader there are great tools for working with ifc That Open · GitHub which would allow you to export ifc data too.
If you don’t need to preserve the format you could also convert your models to a Web friendly format such as gltf / glb…