Scales a point.

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

Syntax

C#
public Point Scale(
	Point center,
	double scaleX,
	double scaleY,
	double scaleZ
)
Visual Basic (Declaration)
Public Function Scale ( _
	center As Point, _
	scaleX As Double, _
	scaleY As Double, _
	scaleZ As Double _
) As Point
Visual C++
public:
Point^ Scale(
	Point^ center, 
	double scaleX, 
	double scaleY, 
	double scaleZ
)

Parameters

center
Type: ceometric.VectorGeometry..::.Point
The scale center.
scaleX
Type: System..::.Double
The scale factor in x-direction.
scaleY
Type: System..::.Double
The scale factor in y-direction.
scaleZ
Type: System..::.Double
The scale factor in z-direction.

Return Value

Returns a point scaled in x, y and z direction with respect to a center.

See Also