#pragma once namespace Aftr { /// Used to swizzle a VectorT's scalars or a Mat4T's column vectors. Needs to always be included /// by both VectorT and Mat4T. enum class swizzle_to { xyz, xzy, yxz, yzx, zxy, zyx }; }//namespace Aftr