Uses of Class
org.hermit.geometry.Vector

Packages that use Vector
org.hermit.geometry Some basic geometric utilities, geared towards graph analysis. 
 

Uses of Vector in org.hermit.geometry
 

Methods in org.hermit.geometry that return Vector
static Vector Vector.add(Vector a, Vector b)
          Calculate the vector sum of two vectors.
 Vector Edge.directionVector()
          Get the direction vector for this edge.
static Vector Vector.scale(Vector vec, double scale)
          Scale a vector by a given value.
static Vector Vector.sub(Vector a, Vector b)
          Calculate the vector difference of two vectors.
static Vector Point.vector(Point a, Point b)
          Calculate the Vector between two points.
 

Methods in org.hermit.geometry with parameters of type Vector
static Vector Vector.add(Vector a, Vector b)
          Calculate the vector sum of two vectors.
 int Vector.compareTo(Vector o)
          Compares this object with the specified object for order.
static Vector Vector.scale(Vector vec, double scale)
          Scale a vector by a given value.
static Vector Vector.sub(Vector a, Vector b)
          Calculate the vector difference of two vectors.