CADability dotNET
Creates a modification that performs a scaling with different factors in x,y and z direction

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

Syntax

C#
public static ModOp Scale(
	double FactorX,
	double FactorY,
	double FactorZ
)
Visual Basic
Public Shared Function Scale ( _
	FactorX As Double, _
	FactorY As Double, _
	FactorZ As Double _
) As ModOp
Visual C++
public:
static ModOp Scale(
	double FactorX, 
	double FactorY, 
	double FactorZ
)

Parameters

FactorX
Type: System..::..Double
scaling in the direction of the x-axis
FactorY
Type: System..::..Double
scaling in the direction of the y-axis
FactorZ
Type: System..::..Double
scaling in the direction of the z-axis

Return Value

the resulting modification

See Also