9a6191cabb8d6539010bd0f7308ad30bb873d5a8
[platform/upstream/fontconfig.git] / doc / FcMatrixRotate.3
1 .\" auto-generated by docbook2man-spec from docbook-utils package
2 .TH "FcMatrixRotate" "3" "30 8月 2018" "Fontconfig 2.13.1" ""
3 .SH NAME
4 FcMatrixRotate \- Rotate a matrix
5 .SH SYNOPSIS
6 .nf
7 \fB#include <fontconfig/fontconfig.h>
8 .sp
9 void FcMatrixRotate (FcMatrix *\fImatrix\fB, double \fIcos\fB, double \fIsin\fB);
10 .fi\fR
11 .SH "DESCRIPTION"
12 .PP
13 \fBFcMatrixRotate\fR rotates \fImatrix\fR
14 by the angle who's sine is \fIsin\fR and cosine is
15 \fIcos\fR\&. This is done by multiplying by the
16 matrix:
17 .sp
18 .nf
19   cos -sin
20   sin  cos
21 .sp
22 .fi