#include <ContainerInterfaces.h>
Often used to represent position (x,y,z) or colour (r,g,b). Usually used when the function being called needs to return data, if just passing data in, use in_Vector3f.
Data Fields | |
| struct { | |
| float x | |
| float y | |
| float z | |
| }; | |
| Value names used when accessing as a position. | |
| struct { | |
| float r | |
| float g | |
| float b | |
| }; | |
| Value names used when accessing as a colour. | |
| float | val [3] |
| A convenience name useful for when an implementation expects a vector as a float* to a float[3] array. | |
| struct { ... } |
Value names used when accessing as a position.
| struct { ... } |
Value names used when accessing as a colour.
| float DigitalSpaces::out_Vector3f::val[3] |
A convenience name useful for when an implementation expects a vector as a float* to a float[3] array.
1.5.6