Following constants can be used anywhere in your
code in place of the actual values. You can combine these values by using the addition(+)
or bitwise-OR(|) operator:
| Name | Value | Description |
|---|---|---|
| RF_MANIPULATOR_TRANSLATE_X | 1 | Shows x-directional translation manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_TRANSLATE_Y | 2 | Shows y-directional translation manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_TRANSLATE_Z | 4 | Shows z-directional translation manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_TRANSLATE_ALL | 7 | Shows all translation manipulators and makes possible to manipulate it. |
| RF_MANIPULATOR_ROTATE_X | 16 | Shows x-axis rotation manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_ROTATE_Y | 32 | Shows y-axis rotation manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_ROTATE_Z | 64 | Shows z-axis rotation manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_ROTATE_ALL | 112 |
Shows all rotation manipulators and makes possible to manipulate
it.
Arbitrary rotating sphere shows if this value is set. |
| RF_MANIPULATOR_SCALE_X | 256 | Shows x-directional scaling manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_SCALE_Y | 512 | Shows y-directional scaling manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_SCALE_Z | 1024 | Shows z-directional scaling manipulator and makes possible to manipulate it. |
| RF_MANIPULATOR_SCALE_ALL | 1792 | Shows all scaling manipulators and makes possible to manipulate it. |
| RF_MANIPULATOR_MANIPULATE_ALL | 1911 | Shows all manipulators and makes possible to manipulate it. |