JavaCAD
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 }