guScale.3p
731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
.TH guScale 3P local "Silicon Graphics, Inc."
.SH NAME
.upperok
guScale, guScaleF \- computes a scaling modeling matrix.
.SH C SPECIFICATION
.nf
\f3#include "gu.h"
void guScale(Mtx m, float x, float y, float z)
void guScaleF(float m[4][4], float x, float y, float z)
\fP
.fi
.SH PARAMETERS
.TP 10
.I m
resulting 4x4 projection matrix.
.TP
.I x, y, z
scaling value along x, y, and z axis.
.SH DESCRIPTION
.I guScale
Returns a fixed-point 4x4 matrix
.B m.
.PP
For a detailed description of the
fixed-point matrix format, see
.I gSPMatrix (3P).
.PP
.I guScaleF
Returns a floating-point 4x4 matrix
.B m.
.SH SEE ALSO
.IR guRotate (3P)
.IR guTranslate (3P)
.IR guPosition (3P)
.IR guAlign (3P)
.IR gSPMatrix (3P)
.IR glScale (3G)