Go to the source code of this file.
◆ FoliageModelList
Data Fields |
s32 |
count |
|
s32 |
models[VLA] |
|
◆ FoliageDropList
◆ FoliageVectorList
Data Fields |
s32 |
count |
|
Vec3i |
vectors[VLA] |
|
◆ SearchBushConfig
◆ ShakeTreeConfig
◆ FoliageDropList.drops
struct FoliageDropList.drops |
◆ foliage_setup_shear_mtx()
void N foliage_setup_shear_mtx |
( |
Matrix4f | mtx, |
|
|
f32 | scale, |
|
|
f32 | xAmount, |
|
|
f32 | zAmount ) |
Definition at line 41 of file FoliageTransform.inc.c.
41 {
42 guMtxIdentF(mtx);
43 mtx[1][0] = scale * xAmount;
44 mtx[1][1] = 1.0f;
45 mtx[1][2] = scale * zAmount;
46}