CADability dotNET
Returns a rectangle which is scaled by the provided factor. The center remaines fixed.

Namespace: CADability
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public static BoundingRect operator *(
	BoundingRect rect,
	double Factor
)
Visual Basic
Public Shared Operator * ( _
	rect As BoundingRect, _
	Factor As Double _
) As BoundingRect
Visual C++
public:
static BoundingRect operator *(
	BoundingRect rect, 
	double Factor
)

Parameters

rect
Type: CADability..::..BoundingRect
The initial rectangle
Factor
Type: System..::..Double
The scalingfactor

Return Value

the scaled rectangle

See Also