Scales a circle.

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

Syntax

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

Parameters

center
Type: ceometric.VectorGeometry..::.Point
The scale center.
scaleFactor
Type: System..::.Double
The scale factor.

Return Value

Returns a circle scaled with respect to a center.

Exceptions

ExceptionCondition
System..::.ArgumentNullExceptionThe scale factor is too small.

See Also