|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.misc.Location
jist.swans.misc.Location.Location2D
public static final class Location.Location2D
A planar location implementation.
Nested Class Summary |
---|
Nested classes/interfaces inherited from class jist.swans.misc.Location |
---|
Location.Location2D, Location.Location3D |
Field Summary | |
---|---|
private float |
height
co-ordinates. |
private float |
x
co-ordinates. |
private float |
y
co-ordinates. |
Constructor Summary | |
---|---|
Location.Location2D(float x,
float y)
Create two-dimensional coordinate at default height. |
|
Location.Location2D(float x,
float y,
float height)
Create two-dimensional coordinate. |
Method Summary | |
---|---|
void |
add(Location l)
Vector addition of locations... |
float |
distance(Location l)
Compute distance between two locations. |
float |
distanceSqr(Location l)
Compute distance squared between two locations. |
float |
getHeight()
Return height of location. |
float |
getX()
Return X-coordinate of location. |
float |
getY()
Return Y-coordinate of location. |
boolean |
inside(Location bounds)
Determine whether point is inside bounds. |
boolean |
inside(Location min,
Location max)
Determine whether points is inside bounds. |
Location |
step(Location l,
int steps)
Divide (scale) vector from current to second location into a number of equal step (displacement) vectors. |
java.lang.String |
toString()
|
Methods inherited from class jist.swans.misc.Location |
---|
getClone, parse |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private float x
private float y
private float height
Constructor Detail |
---|
public Location.Location2D(float x, float y)
x
- x-coordinatey
- y-coordinatepublic Location.Location2D(float x, float y, float height)
x
- x-coordinatey
- y-coordinateheight
- z-coordinateMethod Detail |
---|
public float distanceSqr(Location l)
distanceSqr
in class Location
l
- second location
public float distance(Location l)
distance
in class Location
l
- second location
public Location step(Location l, int steps)
step
in class Location
l
- destination locationsteps
- number of steps to destination
public float getX()
getX
in class Location
public float getY()
getY
in class Location
public float getHeight()
getHeight
in class Location
public boolean inside(Location bounds)
inside
in class Location
bounds
- bounds to test again
public boolean inside(Location min, Location max)
inside
in class Location
min
- lower left boundmax
- upper right bound
public void add(Location l)
add
in class Location
l
- second location / displacementpublic java.lang.String toString()
toString
in class java.lang.Object
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |