MatrixScale Method (Double, Double, Double)
|
Build a scaling matrix.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Matrix Scale(
double x,
double y,
double z
)
Public Shared Function Scale (
x As Double,
y As Double,
z As Double
) As Matrix
public:
static Matrix Scale(
double x,
double y,
double z
)
static member Scale :
x : float *
y : float *
z : float -> Matrix
STATIC METHOD Scale(
x AS REAL8,
y AS REAL8,
z AS REAL8
) AS Matrix
Parameters
- x
- Type: SystemDouble
Scale factor for x-axis. - y
- Type: SystemDouble
Scale factor for y-axis. - z
- Type: SystemDouble
Scale factor for z-axis.
Return Value
Type:
MatrixA scaling matrix.
See Also