Uses of Class
cse115.utilities.Vector

Packages that use Vector
cse115.graphics The Graphics Package. 
demos.bounce   
fishbowl   
lab5lib   
 

Uses of Vector in cse115.graphics
 

Methods in cse115.graphics with parameters of type Vector
 void Polygon.move(Vector v)
          Moves the Polygon by some amount, specified by a vector
 void Locatable.move(Vector v)
          Moves the Object from one location to another by a specific vector
 void AbstractGraphic.move(Vector v)
          Moves the Graphic by a certain vector
 

Uses of Vector in demos.bounce
 

Methods in demos.bounce with parameters of type Vector
 void BouncingTriangle.move(Vector v)
           
 

Uses of Vector in fishbowl
 

Fields in fishbowl declared as Vector
protected  Vector MovingBodyAdapter._vector
          Vector used for motion.
 

Methods in fishbowl that return Vector
 Vector MovingBodyAdapter.getVector()
          Returns the motion vector for this MovingBody
 Vector MovingBody.getVector()
          This method is to be used to obtain a Vector from a MovingBody.
 Vector Fish.getVector()
           
 

Methods in fishbowl with parameters of type Vector
 void MovingBodyAdapter.setVector(Vector newVector)
          Change the vector motion of this MovingBody
 void MovingBody.setVector(Vector newVector)
          This method is to be used to pass a Vector to a MovingBody.
 void Fish.setVector(Vector v)
           
 

Uses of Vector in lab5lib
 

Methods in lab5lib with parameters of type Vector
 void Triangle.move(Vector v)