# Vectors

## Vector 2

### Variables

* float x
* float y

### Calculations allowed

You can calcul Vector2 with an Vector2. all varaibles will be calculated.

You can calcul Vector2 with an Vector3. only variable X and Y of Vector3 will be calculated.

You can calcul Vector2 with a float. All varaibles will be calculated with teh float value.

## Vector3

### Variables

* float x
* float y
* float z

### Calculations allowed

You can calcul Vector3 with an Vector3. all varaibles will be calculated.

You can calcul Vector3 with an Vector2. only variable X and Y of Vector3 will be calculated.

You can calcul Vector3 with a float. All varaibles will be calculated with teh float value.
