repo.or.cz
/
k8-jellyphysics.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cosmetix
[k8-jellyphysics.git]
/
src
/
jelly
/
Vector2.cpp
blob
77dc1a5eb467a293d381d156a6ba16eecf04a510
1
#include
"Vector2.h"
2
3
4
namespace
JellyPhysics
{
5
6
const
Vector2
Vector2
::
Zero
=
Vector2
(
0
,
0
);
7
const
Vector2
Vector2
::
One
=
Vector2
(
1
,
1
);
8
9
}