Searched defs:Vector2f (Results 1 - 1 of 1) sorted by relevance

/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector2f.java43 * <code>Vector2f</code> defines a Vector for a two float value vector.
48 public final class Vector2f implements Savable, Cloneable, java.io.Serializable { class in inherits:Savable,Cloneable,java.io.Serializable
51 private static final Logger logger = Logger.getLogger(Vector2f.class.getName());
53 public static final Vector2f ZERO = new Vector2f(0f, 0f);
54 public static final Vector2f UNIT_XY = new Vector2f(1f, 1f);
66 * Creates a Vector2f with the given initial x and y values.
69 * The x value of this Vector2f.
71 * The y value of this Vector2f
73 public Vector2f(float x, float y) { method in class:Vector2f
81 public Vector2f() { method in class:Vector2f
91 public Vector2f(Vector2f vector2f) { method in class:Vector2f
[all...]

Completed in 66 milliseconds