 | PdfiumFPDFMatrix_RotateAt Method |
Applies a clockwise rotation about the specified point to the specified Matrix in the specified order.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFMatrix_RotateAt(
FS_MATRIX dst,
float angle,
float x,
float y,
bool bPrepended = false
)
Public Shared Sub FPDFMatrix_RotateAt (
dst As FS_MATRIX,
angle As Single,
x As Single,
y As Single,
Optional bPrepended As Boolean = false
)
public:
static void FPDFMatrix_RotateAt(
FS_MATRIX^ dst,
float angle,
float x,
float y,
bool bPrepended = false
)
static member FPDFMatrix_RotateAt :
dst : FS_MATRIX *
angle : float32 *
x : float32 *
y : float32 *
?bPrepended : bool
(* Defaults:
let _bPrepended = defaultArg bPrepended false
*)
-> unit
public static void FPDFMatrix_RotateAt(
FS_MATRIX dst,
float angle,
float x,
float y,
boolean bPrepended = false
)
Patagames.Pdf.Pdfium.FPDFMatrix_RotateAt = function(dst, angle, x, y, bPrepended);
Parameters
- dst FS_MATRIX
- The matrix
- angle Single
- The angle of the rotation, in radians.
- x Single
- The x-coordinate of the point that represents the center of the rotation.
- y Single
- The y-coordinate of the point that represents the center of the rotation.
- bPrepended Boolean (Optional)
- Specifies the order (append or prepend) in which the rotation is applied to the Matrix.
See Also