repo.or.cz
/
cluster_expansion_mc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
test commit and push upstream to origin
[cluster_expansion_mc.git]
/
Direction.h
blob
21f066e061330ef4b49d75ee5e19264ce8eebcbb
1
#ifndef DIRECTION_H_
2
#define DIRECTION_H_
3
4
5
6
7
struct
Direction
{
8
double
x
;
9
double
y
;
10
Direction
(
double
x
,
double
y
) :
x
(
x
),
y
(
y
) {};
11
};
12
13
typedef
vector
<
Direction
>
Directions
;
14
15
16
17
18
#endif
/*DIRECTION_H_*/