---------------------------------------------------------------------------- */
| 129 | |
| 130 | /* ---------------------------------------------------------------------------- */ |
| 131 | void color4_to_float4(const C_STRUCT aiColor4D *c, float f[4]) |
| 132 | { |
| 133 | f[0] = c->r; |
| 134 | f[1] = c->g; |
| 135 | f[2] = c->b; |
| 136 | f[3] = c->a; |
| 137 | } |
| 138 | |
| 139 | /* ---------------------------------------------------------------------------- */ |
| 140 | void set_float4(float f[4], float a, float b, float c, float d) |