27 std::string getId() {
return sp.
mId;};
28 void setId(std::string
id) {sp.
mId = id;}
30 void setOrigin(
double x,
double y,
double z)
31 {sp.
mOrigin = glm::dvec3(x, y, z);}
33 void setRotation(
double x,
double y,
double z,
double angle)
35 double getScale() {
return sp.
mScale;}
36 void setScale(
double scale) {sp.
mScale = scale;}
Definition: Rotation.h:80
Rotation mRotation
Specify the rotation for the scene part.
Definition: ScenePart.h:84
Wrapper for ScenePart class.
Definition: PyScenePartWrapper.h:14
double mScale
Specify the scale for the scene part.
Definition: ScenePart.h:88
Class representing a scene part.
Definition: ScenePart.h:16
glm::dvec3 mOrigin
Specify the origin for the scene part.
Definition: ScenePart.h:80
std::string mId
Identifier for the scene part.
Definition: ScenePart.h:43
Wrapper to communicate glm::dvec3 with python.
Definition: PythonDVec3.h:14