Uses of Class
ProGAL.geom2d.Vector

Packages that use Vector
ProGAL.geom2d This package contains classes that are all related to two-dimensional geometric concepts. 
 

Uses of Vector in ProGAL.geom2d
 

Methods in ProGAL.geom2d that return Vector
 Vector Vector.add(Vector v)
           
 Vector Vector.addThis(Point p)
           
 Vector Vector.addThis(Vector v)
           
 Vector Vector.clone()
           
static Vector Vector.createDiff(Vector u, Vector v)
           
 Vector Vector.createRotatedVector(double a)
           
static Vector Vector.createSum(Vector u, Vector v)
           
 Vector Line.getDirection()
           
 Vector Vector.multiply(double a)
           
 Vector Vector.multiplyThis(double a)
           
 Vector Vector.normalize()
           
 Vector Vector.normalizeThis()
           
 Vector Vector.rotate90()
           
 Vector Vector.rotate90This()
           
 Vector Vector.rotateThis(double a)
           
 Vector Vector.scale(double a)
           
 Vector Vector.scaleToLength(double l)
           
 Vector Point.vectorTo(Point p)
          Return a vector pointing from this point to p
 

Methods in ProGAL.geom2d with parameters of type Vector
 Vector Vector.add(Vector v)
           
 Point Point.add(Vector v)
          Add the vector v to this point and return the result
 Vector Vector.addThis(Vector v)
           
 Point Point.addThis(Vector v)
          Add the vector v to this point and return the result (changes this object)
static Vector Vector.createDiff(Vector u, Vector v)
           
static Vector Vector.createSum(Vector u, Vector v)
           
static double Vector.crossProduct(Vector u, Vector v)
           
 double Vector.dot(Vector v)
           
static double Vector.dotProduct(Vector u, Vector v)
           
static boolean Vector.leftTurn(Vector u, Vector v)
           
static boolean Vector.rightTurn(Vector u, Vector v)
           
 Point Point.subtract(Vector v)
          Subtract the vector v from this point and return the result
 Point Point.subtractThis(Vector v)
          Subtract the vector v from this point and return the result (changes this object)
 void PointSet.translate(Vector v)
          translates all points by the specified vector
 

Constructors in ProGAL.geom2d with parameters of type Vector
Line(Point p, Vector n)
          creates a line through a given point and with a given normal vector