summaryrefslogtreecommitdiff
path: root/svx/inc
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-07-22 23:38:52 +0200
committerThomas Arnhold <thomas@arnhold.org>2011-07-25 15:12:21 +0200
commitf6b2ace597e23fcdec27c8d2560cb407e0b8dea5 (patch)
treeb00d4301536235b557534fce578073be191210ee /svx/inc
parent6e33eee41ddfa8c3bace8886ca6b7ab1529f9964 (diff)
callcatcher: remove unused methods
Diffstat (limited to 'svx/inc')
-rw-r--r--svx/inc/svx/camera3d.hxx10
1 files changed, 0 insertions, 10 deletions
diff --git a/svx/inc/svx/camera3d.hxx b/svx/inc/svx/camera3d.hxx
index 3775adbc4be2..5c4cc51bb370 100644
--- a/svx/inc/svx/camera3d.hxx
+++ b/svx/inc/svx/camera3d.hxx
@@ -58,9 +58,6 @@ class SVX_DLLPUBLIC Camera3D : public Viewport3D
double fFocalLen = 35.0, double fBankAng = 0);
Camera3D();
- // Reset to default values
- void Reset();
-
void SetDefaults(const basegfx::B3DPoint& rPos, const basegfx::B3DPoint& rLookAt,
double fFocalLen = 35.0, double fBankAng = 0);
@@ -74,19 +71,12 @@ class SVX_DLLPUBLIC Camera3D : public Viewport3D
// Focal length in mm
void SetFocalLength(double fLen);
- void SetFocalLengthWithCorrect(double fLen);
double GetFocalLength() const { return fFocalLength; }
// Bank angle links/rechts
void SetBankAngle(double fAngle);
double GetBankAngle() const { return fBankAngle; }
- // For rotating the camera position. Changes LookAt.
- void Rotate(double fHAngle, double fVAngle);
-
- // For changing the point of view. Changes the position.
- void RotateAroundLookAt(double fHAngle, double fVAngle);
-
void SetAutoAdjustProjection(bool bAdjust = true)
{ bAutoAdjustProjection = bAdjust; }
bool IsAutoAdjustProjection() const { return bAutoAdjustProjection; }