 | FS_MATRIXShear Method |
Applies the specified shear vector to this Matrix in the specified order.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void Shear(
float shearX,
float shearY,
bool prepended = false
)
Public Sub Shear (
shearX As Single,
shearY As Single,
Optional prepended As Boolean = false
)
public:
void Shear(
float shearX,
float shearY,
bool prepended = false
)
member Shear :
shearX : float32 *
shearY : float32 *
?prepended : bool
(* Defaults:
let _prepended = defaultArg prepended false
*)
-> unit public void Shear(
float shearX,
float shearY,
boolean prepended = false
)
function Shear(shearX, shearY, prepended);
Parameters
- shearX Single
- The horizontal shear factor.
- shearY Single
- The vertical shear factor.
- prepended Boolean (Optional)
- Specifies the order (append or prepend) in which the shear is applied.
See Also