mirror of
https://git.coom.tech/drummyfish/small3dlib.git
synced 2024-11-21 20:39:57 +01:00
Add comment
This commit is contained in:
parent
f3b2a0fa39
commit
f58cdc58ca
1 changed files with 3 additions and 1 deletions
4
s3l.h
4
s3l.h
|
@ -312,7 +312,9 @@ void S3L_vec4Xmat4(S3L_Vec4 *v, S3L_Mat4 *m);
|
||||||
void S3L_vec3Xmat4(S3L_Vec4 *v, S3L_Mat4 *m);
|
void S3L_vec3Xmat4(S3L_Vec4 *v, S3L_Mat4 *m);
|
||||||
|
|
||||||
/** Multiplies two matrices with normalization by S3L_FRACTIONS_PER_UNIT.
|
/** Multiplies two matrices with normalization by S3L_FRACTIONS_PER_UNIT.
|
||||||
Result is stored in the first matrix. */
|
Result is stored in the first matrix. The result represents a transformation
|
||||||
|
that has the same effect as applying the transformation represented by m1 and
|
||||||
|
then m2 (in that order). */
|
||||||
void S3L_mat4Xmat4(S3L_Mat4 *m1, S3L_Mat4 *m2);
|
void S3L_mat4Xmat4(S3L_Mat4 *m1, S3L_Mat4 *m2);
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
|
|
Loading…
Reference in a new issue