JavaCAD
src
main
java
com
piro
bezier
Vector2.java
Go to the documentation of this file.
1
package
com.piro.bezier;
2
3
public
class
Vector2
{
4
5
public
float
x
;
6
public
float
y
;
7
8
public
void
set
(
float
x
,
float
y
) {
9
this.x =
x
;
10
// TODO Auto-generated method stub
11
this.y =
y
;
12
13
}
14
15
}
com.piro.bezier.Vector2
Definition:
Vector2.java:3
com.piro.bezier.Vector2.y
float y
Definition:
Vector2.java:6
com.piro.bezier.Vector2.x
float x
Definition:
Vector2.java:5
Generated by
1.9.1