Describes transformation order for transformations.
You can find more information in comments below.
enum class TransformOrder // Transformation order
{
SRT, // Scale -> rotate -> translate
STR, // Scale -> translate -> rotate
RST, // Rotate -> scale -> translate
RTS, // Rotate -> translate -> scale
TSR, // Translate -> scale -> rotate
TRS // Translate -> rotate -> scale
};
Namespace: | nitisa |
Include: | Nitisa/Core/TransformOrder.h |