From 15c15473f6116d20f8829409e30ce20ecf0946f5 Mon Sep 17 00:00:00 2001 From: leo Date: Sat, 18 Feb 2006 07:50:38 +0000 Subject: Removed the Point3 class. git-svn-id: http://svn.leocad.org/trunk@483 c7d43263-9d01-0410-8a33-9dba5d9f93d6 --- common/camera.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'common/camera.h') diff --git a/common/camera.h b/common/camera.h index 840b9f5..c129415 100644 --- a/common/camera.h +++ b/common/camera.h @@ -68,10 +68,10 @@ public: virtual ~Camera (); // Query functions. - inline Point3 GetEyePosition() const - { return Point3(m_fEye[0], m_fEye[1], m_fEye[2]); }; - inline Point3 GetTargetPosition() const - { return Point3(m_fTarget[0], m_fTarget[1], m_fTarget[2]); }; + inline Vector3 GetEyePosition() const + { return Vector3(m_fEye[0], m_fEye[1], m_fEye[2]); }; + inline Vector3 GetTargetPosition() const + { return Vector3(m_fTarget[0], m_fTarget[1], m_fTarget[2]); }; inline Vector3 GetUpVector() const { return Vector3(m_fUp[0], m_fUp[1], m_fUp[2]); }; -- cgit v1.2.3