summaryrefslogtreecommitdiff
path: root/tools/source/generic/b3dtrans.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'tools/source/generic/b3dtrans.cxx')
-rw-r--r--tools/source/generic/b3dtrans.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/source/generic/b3dtrans.cxx b/tools/source/generic/b3dtrans.cxx
index 2b8929433540..d12330145fdf 100644
--- a/tools/source/generic/b3dtrans.cxx
+++ b/tools/source/generic/b3dtrans.cxx
@@ -334,14 +334,14 @@ void B3dTransformationSet::SetViewportRectangle(Rectangle const & rRect, Rectang
const basegfx::B3DPoint B3dTransformationSet::WorldToEyeCoor(const basegfx::B3DPoint& rVec)
{
basegfx::B3DPoint aVec(rVec);
- aVec *= GetOrientation();
+ aVec *= maOrientation;
return aVec;
}
const basegfx::B3DPoint B3dTransformationSet::EyeToWorldCoor(const basegfx::B3DPoint& rVec)
{
basegfx::B3DPoint aVec(rVec);
- aVec *= GetInvOrientation();
+ aVec *= maInvOrientation;
return aVec;
}