Computes a moved plane.

Namespace:  ceometric.VectorGeometry
Assembly:  ceometric.VectorGeometry (in ceometric.VectorGeometry.dll) Version: 1.8.0.0 (1.8.0.0)

Syntax

C#
public Plane Move(
	Point startPoint,
	Point endPoint
)
Visual Basic (Declaration)
Public Function Move ( _
	startPoint As Point, _
	endPoint As Point _
) As Plane
Visual C++
public:
Plane^ Move(
	Point^ startPoint, 
	Point^ endPoint
)

Parameters

startPoint
Type: ceometric.VectorGeometry..::.Point
The start point of the displacement.
endPoint
Type: ceometric.VectorGeometry..::.Point
The end point of the displacement.

Return Value

Returns a plane displaced by startPoint.DistanceTo(endPoint) in the direction of endPoint.ToVector3d() - startPoint.ToVector3d().

See Also