ui: typed edges

Edges in the graph view are now colored according to their type.
This commit is contained in:
Manuel Dobusch
2014-07-16 15:38:54 +02:00
parent 40ca86a172
commit 2c9c83d003
9 changed files with 94 additions and 49 deletions
+2 -2
View File
@@ -28,7 +28,7 @@ public:
Vector2<T> normalized() const;
template<class U>
void operator=(Vector2<U>& other);
void operator=(const Vector2<U>& other);
protected:
static const unsigned int m_xIndex = 0;
@@ -131,7 +131,7 @@ Vector2<T> Vector2<T>::normalized() const
template<class T>
template<class U>
void Vector2<T>::operator=(Vector2<U>& other)
void Vector2<T>::operator=(const Vector2<U>& other)
{
this->assign(other);
}