PointCloudTransform Method (Matrix4x4) |
Transform the point cloud in-place by the given 4x4 transformation matrix
Namespace:
Zivid.NET
Assembly:
ZividCoreNET (in ZividCoreNET.dll) Version: 0.0.0.0
Syntax public 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:
PointCloudRemarks The transform matrix must be affine. In other words, the last row of the matrix
must be `[0, 0, 0, 1]`.
See Also