light/modules/math/components.cppm

18 lines
239 B
Text
Raw Permalink Normal View History

export module math.components;
2026-01-20 09:58:35 +03:30
import preliminary;
import math.vec3;
namespace lt::math::components {
export struct Transform
{
math::vec3 translation;
math::vec3 scale;
math::vec3 rotation;
};
} // namespace lt::math::components