2025-11-04 18:50:59 +03:30
|
|
|
export module math.components;
|
2025-11-01 03:10:33 +03:30
|
|
|
|
2025-11-04 18:50:59 +03:30
|
|
|
import math.vec3;
|
2025-11-01 03:10:33 +03:30
|
|
|
|
|
|
|
|
namespace lt::math::components {
|
|
|
|
|
|
2025-11-04 18:50:59 +03:30
|
|
|
export struct Transform
|
2025-11-01 03:10:33 +03:30
|
|
|
{
|
|
|
|
|
math::vec3 translation;
|
|
|
|
|
|
|
|
|
|
math::vec3 scale;
|
|
|
|
|
|
|
|
|
|
math::vec3 rotation;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace lt::math::components
|