BigRedWolfy (talk | contribs) No edit summary |
m type not types |
||
Line 1: | Line 1: | ||
In addition to classic meshes, Resonite supports importing point clouds as well, which can be a great visualization tool. Internally point cloud support is based on the same [[ | In addition to classic meshes, Resonite supports importing point clouds as well, which can be a great visualization tool. Internally point cloud support is based on the same [[Type:StaticMesh]] class, using vertices with a point topology submesh instead of triangles. | ||
Point Clouds can either be imported in variety of [[3D Model Import|3D model formats]], by forcing the importer to extract only the vertex data in the Advanced Settings (or setting the appropriate flag when using it from the code). Unfortunately currently the Assimp library doesn't recognize point cloud topology in traditional 3D formats (e.g. OBJ, PLY) very well, so it has to be specified manually. | Point Clouds can either be imported in variety of [[3D Model Import|3D model formats]], by forcing the importer to extract only the vertex data in the Advanced Settings (or setting the appropriate flag when using it from the code). Unfortunately currently the Assimp library doesn't recognize point cloud topology in traditional 3D formats (e.g. OBJ, PLY) very well, so it has to be specified manually. |
Revision as of 19:00, 18 January 2024
In addition to classic meshes, Resonite supports importing point clouds as well, which can be a great visualization tool. Internally point cloud support is based on the same Type:StaticMesh class, using vertices with a point topology submesh instead of triangles.
Point Clouds can either be imported in variety of 3D model formats, by forcing the importer to extract only the vertex data in the Advanced Settings (or setting the appropriate flag when using it from the code). Unfortunately currently the Assimp library doesn't recognize point cloud topology in traditional 3D formats (e.g. OBJ, PLY) very well, so it has to be specified manually.
In addition Resonite also supports several other point-cloud only formats.
Currently Supported Point Cloud formats
- All 3D Model formats (see 3D Model Import)
- LAZ/LAS LiDAR format ( .laz, .las )
- ASCII PTS ( .pts )