PointCloudTransform Method (Matrix4x4) | 
 Transform the point cloud in-place by the given 4x4 transformation matrix
 
    Namespace: 
   Zivid.NET
    Assembly:
   ZividCoreNET (in ZividCoreNET.dll) Version: 2.15.0.0
Syntaxpublic PointCloud Transform(
	Matrix4x4 matrix
)
Public Function Transform ( 
	matrix As Matrix4x4
) As PointCloud
public:
PointCloud^ Transform(
	Matrix4x4^ matrix
)
Parameters
- matrix
 - Type: Zivid.NETMatrix4x4
An affine 4x4 matrix 
Return Value
Type: 
PointCloud
RemarksThe transform matrix must be affine. In other words, the last row of the matrix
must be `[0, 0, 0, 1]`.
See Also