orientation property
Gets the object orientation as a quaternion.
Implementation
Point4d get orientation {
final OperationResult resultString = objectMethod(
_pointerId,
'MapSceneObject',
'getOrientation',
);
return Point4d.fromJson(resultString['result']);
}