UnorganizedPointCloudTransformed Method (Single) |
Transform the point cloud by the given 4x4 transformation matrix, represented as a 2D array
Namespace:
Zivid.NET
Assembly:
ZividCoreNET (in ZividCoreNET.dll) Version: 2.16.0.0
Syntaxpublic UnorganizedPointCloud Transformed(
float[,] matrix
)
Public Function Transformed (
matrix As Single(,)
) As UnorganizedPointCloud
public:
UnorganizedPointCloud^ Transformed(
array<float,2>^ matrix
)
Parameters
- matrix
- Type: SystemSingle
An affine 4x4 matrix
Return Value
Type:
UnorganizedPointCloud
Remarks
This method is identical to
Transform(Single), except the transformed point cloud is
returned as a new UnorganizedPointCloud instance. The current point cloud is not modified.
See Also