3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Added Vector2D.toVector(double y).

Dieser Commit ist enthalten in:
TomyLobo 2012-01-03 14:11:55 +01:00
Ursprung 7c71617dbf
Commit eafde8cc49

Datei anzeigen

@ -575,6 +575,15 @@ public class Vector2D {
return new Vector(x, 0, z);
}
/**
* Creates a 3D vector by adding the specified Y component to this vector.
*
* @return Vector
*/
public Vector toVector(double y) {
return new Vector(x, y, z);
}
/**
* Gets the minimum components of two vectors.
*