repo.or.cz
/
gsk.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
coords() method to get and set coordinates of ICoordinate
[gsk.git]
/
GestureDetectionApp
/
GestureRecognition
/
src
/
at
/
mus
/
recognition
/
ICoordinate.java
blob
3cfae6a17edeb4893ae40b56eb93150dc3addbd4
1
package
at
.
mus
.
recognition
;
2
3
public interface
ICoordinate
{
4
float
distance
(
Object other
);
5
ICoordinate
add
(
Object other
);
6
ICoordinate
divide
(
float
f
);
7
float
[]
coords
();
8
void
coords
(
float
[]
coords
);
9
}