mirror of
https://github.com/QL-Win/QuickLook.git
synced 2025-09-13 11:09:06 +00:00
Support Point Cloud Data (.pcd) for 3D spatial
1. Only support PCD files with PointXYZ format. 2. Not supported for Color or Intensity formats.
This commit is contained in:
@@ -31,17 +31,20 @@ public class Plugin : IViewer
|
||||
/// </summary>
|
||||
private static readonly HashSet<string> WellKnownExtensions = new(
|
||||
[
|
||||
// Default
|
||||
// Default supported by HelixToolkit
|
||||
".stl", ".obj", ".3ds", ".lwo", ".ply",
|
||||
|
||||
// Extended
|
||||
// Extended supported by Assimp
|
||||
".fbx", ".3mf", ".blend", ".glb", ".gltf", ".dae",
|
||||
#if S_DXF
|
||||
".dxf",
|
||||
#endif
|
||||
|
||||
// Extended_MMD
|
||||
// TBD: MMD (MikuMikuDance)
|
||||
//".pmx",
|
||||
|
||||
// PCD (Point Cloud Data)
|
||||
".pcd",
|
||||
]);
|
||||
|
||||
private HelixPanel _hp;
|
||||
|
Reference in New Issue
Block a user