2027 Method
Changes 0
M

PointCloudEngineRegistry.RegisterPointCloudEngine

Description:
Registers a new point cloud engine and associates it to a particular file extension.
public static void RegisterPointCloudEngine(
	string identifier,
	IPointCloudEngine engine,
	bool isFileBased
)
  • String
    identifier
    A string that distinguishes the engine being registered. If isFileBased is true, this should be the file extension (e.g. "rcs" or "rcp"). If isFileBased is false, this identifier is used only by API calls and should be unique.
  • engine
    The point cloud engine that governs point clouds matching the input identifier.
  • Boolean
    isFileBased
    Indicates to Revit if a single Point Cloud corresponds to a single file on disk.