DYTSrouce/src/utils/Transform.cpp

17 lines
286 B
C++
Raw Normal View History

2025-01-04 04:12:51 +00:00
#include "utils/Transform.h"
#include <osg/Math>
#include "common/SpdLogger.h"
Transform::Transform() {
}
Transform::Transform(const osg::Vec3& location, const osg::Vec3& rotation, const osg::Vec3 scale)
: location_(location)
, rotation_(rotation)
, scale_(scale) {
}