 | FS_MATRIXScale Method |
Applies the specified scale vector (sx and sy) to this Matrix using the specified order.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void Scale(
float sx,
float sy,
bool prepended = false
)
Public Sub Scale (
sx As Single,
sy As Single,
Optional prepended As Boolean = false
)
public:
void Scale(
float sx,
float sy,
bool prepended = false
)
member Scale :
sx : float32 *
sy : float32 *
?prepended : bool
(* Defaults:
let _prepended = defaultArg prepended false
*)
-> unit public void Scale(
float sx,
float sy,
boolean prepended = false
)
function Scale(sx, sy, prepended);
Parameters
- sx Single
- The value by which to scale this Matrix in the x-axis direction.
- sy Single
- The value by which to scale this Matrix in the y-axis direction.
- prepended Boolean (Optional)
- Specifies the order (append or prepend) in which the scale vector is applied to this Matrix.
See Also