Transform3DTransform Method (PointCloud, AffineMatrix3D, PointCloud)

CVB.Net Documentation
Transforms all points of this point cloud with the given affineTransformation and stores them in the target.

Namespace:  Stemmer.Cvb
Assembly:  Stemmer.Cvb (in Stemmer.Cvb.dll) Version: 14.0.0.0
Syntax

public static void Transform(
	this PointCloud pc,
	AffineMatrix3D affineTransformation,
	PointCloud target
)

Parameters

pc
Type: Stemmer.CvbPointCloud
PointCloud to transform.
affineTransformation
Type: Stemmer.CvbAffineMatrix3D
Transformation matrix to apply.
target
Type: Stemmer.CvbPointCloud
Point cloud to store the transformed points in.

Return Value

Type: 
Transformed point cloud.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type PointCloud. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions

ExceptionCondition
CvbExceptionWhen transforming the point cloud failed.
See Also

Reference