Support Point Cloud Data (.pcd) for 3D spatial
Some checks failed
MSBuild / build (push) Has been cancelled
MSBuild / publish (push) Has been cancelled

1. Only support PCD files with PointXYZ format.
2. Not supported for Color or Intensity formats.
This commit is contained in:
ema
2025-07-28 16:48:13 +08:00
parent 68cb555bad
commit f39b53a5c6
3 changed files with 110 additions and 3 deletions

View File

@@ -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;