17 lines
286 B
C++
17 lines
286 B
C++
|
#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) {
|
||
|
|
||
|
}
|