You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
182 B
13 lines
182 B
3 years ago
|
package sig;
|
||
|
|
||
|
public class Vector2 {
|
||
|
public float u,v;
|
||
|
Vector2() {
|
||
|
this(0,0);
|
||
|
}
|
||
|
public Vector2(float u,float v) {
|
||
|
this.u=u;
|
||
|
this.v=v;
|
||
|
}
|
||
|
}
|