|
| |
com.kutsyy.lvspod
Class SpatialPoint
java.lang.Object
|
+--com.kutsyy.lvspod.SpatialPoint
- public final class SpatialPoint
- extends Object
Insert the type's description here.
Created by Vadim Kutsyy
- Author:
- Vadim Kutsyy
|
Constructor Summary |
SpatialPoint()
SptialPoint constructor comment. |
SpatialPoint(int Location,
int xLocation,
int yLocation)
Insert the method's description here. |
|
Method Summary |
void |
addNeighbor(int neighborIndex)
Insert the method's description here. |
void |
addNeighbor(SpatialPoint Neighbor)
Insert the method's description here. |
void |
removeNeighbor(int neighborIndex)
Insert the method's description here. |
| Methods inherited from class java.lang.Object |
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait |
Loc
public int Loc
neighbors
public int[] neighbors
xLoc
public int xLoc
yLoc
public int yLoc
fullneighbors
public int[] fullneighbors
SpatialPoint
public SpatialPoint()
- SptialPoint constructor comment.
SpatialPoint
public SpatialPoint(int Location,
int xLocation,
int yLocation)
- Insert the method's description here.
- Parameters:
Location - intxLocation - intyLocation - int
addNeighbor
public void addNeighbor(int neighborIndex)
- Insert the method's description here.
- Parameters:
neighborIndex - int
addNeighbor
public void addNeighbor(SpatialPoint Neighbor)
- Insert the method's description here.
- Parameters:
Neighbor - com.kutsyy.ar.util.SpatialPoint
removeNeighbor
public void removeNeighbor(int neighborIndex)
- Insert the method's description here.
- Parameters:
neighborIndex - int
|