 | PdfiumFPDFMatrix_Shear Method |
Applies the specified shear vector to the Matrix in the specified order.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFMatrix_Shear(
FS_MATRIX dst,
float shearX,
float shearY,
bool bPrepended = false
)
Public Shared Sub FPDFMatrix_Shear (
dst As FS_MATRIX,
shearX As Single,
shearY As Single,
Optional bPrepended As Boolean = false
)
public:
static void FPDFMatrix_Shear(
FS_MATRIX^ dst,
float shearX,
float shearY,
bool bPrepended = false
)
static member FPDFMatrix_Shear :
dst : FS_MATRIX *
shearX : float32 *
shearY : float32 *
?bPrepended : bool
(* Defaults:
let _bPrepended = defaultArg bPrepended false
*)
-> unit
public static void FPDFMatrix_Shear(
FS_MATRIX dst,
float shearX,
float shearY,
boolean bPrepended = false
)
Patagames.Pdf.Pdfium.FPDFMatrix_Shear = function(dst, shearX, shearY, bPrepended);
Parameters
- dst FS_MATRIX
- The matrix
- shearX Single
- The horizontal shear factor.
- shearY Single
- The vertical shear factor.
- bPrepended Boolean (Optional)
- Specifies the order (append or prepend) in which the shear is applied.
See Also