PointCloudShallowCopy Method |
Returns a shallow copy of the point cloud. The copy will share the point cloud data with the original
point cloud instance. This means that modifications to the point cloud data in the copy will also affect
the original point cloud instance.
Namespace:
Zivid.NET
Assembly:
ZividCoreNET (in ZividCoreNET.dll) Version: 2.15.0.0
Syntaxpublic PointCloud ShallowCopy()
Public Function ShallowCopy As PointCloud
public:
PointCloud^ ShallowCopy()
Return Value
Type:
PointCloud
Remarks
To create a deep copy of the point cloud, use the
Clone method instead.
The copy will not be disposed when the original point cloud is disposed. Both the original and the copy
will need to be disposed separately.
See Also