Updated ghoul version; some code cleanup

This commit is contained in:
Alexander Bock
2014-05-11 18:22:20 +02:00
parent 9bc084bf81
commit 37e5e63b70
4 changed files with 6 additions and 11 deletions

View File

@@ -72,8 +72,8 @@ public:
PowerScaledCoordinate operator-(const PowerScaledCoordinate& rhs) const;
float& operator[](unsigned int idx);
float operator[](unsigned int idx) const;
const double dot(const PowerScaledCoordinate& rhs) const;
const double angle(const PowerScaledCoordinate& rhs) const;
double dot(const PowerScaledCoordinate& rhs) const;
double angle(const PowerScaledCoordinate& rhs) const;
// scalar operators
PowerScaledCoordinate operator*(const double& rhs) const;

View File

@@ -32,15 +32,10 @@
#include <iostream>
namespace openspace
{
// forward declare the power scaled coordinates
//class psc;
namespace openspace {
class pss {
public:
// constructors
pss();
pss(const glm::vec2 &v);