|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjadex.application.space.envsupport.math.Vector2Int
public class Vector2Int
Implementation of a 2-vector using integer values.
| Field Summary | |
|---|---|
static IVector2 |
ZERO
Zero vector. |
| Constructor Summary | |
|---|---|
Vector2Int()
Creates a new Vector2Int with the value (0,0). |
|
Vector2Int(int scalar)
Creates a new Vector2Int using the scalar to assign the value (scalar,scalar). |
|
Vector2Int(int x,
int y)
Creates a new Vector2Int with the given value. |
|
Vector2Int(IVector2 vector)
Creates a new Vector2 with the same value as the input vector. |
|
| Method Summary | |
|---|---|
IVector2 |
add(double scalar)
Adds a scalar to each component of this vector. |
IVector2 |
add(IVector1 scalar)
Adds a scalar to each component of this vector. |
IVector2 |
add(IVector2 vector)
Adds another vector to this vector, adding individual components. |
IVector2 |
assign(IVector2 vector)
Assigns this vector the values of another vector. |
Object |
clone()
Generates a deep clone of the vector. |
IVector2 |
copy()
Makes a copy of the vector without using the complex clone interface. |
IVector2 |
divide(IVector2 vector)
Performs a division on the vector. |
boolean |
equals(IVector2 vector)
Compares the vector to another vector. |
boolean |
equals(Object obj)
Compares the vector to an object |
IVector1 |
getDirection()
Returns the direction (theta) of the vector. |
double |
getDirectionAsDouble()
Returns the direction (theta) of the vector as double. |
float |
getDirectionAsFloat()
Returns the direction (theta) of the vector as float. |
IVector1 |
getDistance(IVector2 vector)
Returns the distance to another vector. |
IVector1 |
getLength()
Returns the length (magnitude) of the vector. |
IVector1 |
getMean()
Returns the mean average of the vector components. |
static IVector2 |
getVector2(Integer a,
Integer b)
Get a vector for two doubles. |
IVector1 |
getX()
Returns the x-component of the vector. |
BigDecimal |
getXAsBigDecimal()
Returns the x-component of the vector as BigDecimal. |
double |
getXAsDouble()
Returns the x-component of the vector as double. |
float |
getXAsFloat()
Returns the x-component of the vector as float. |
int |
getXAsInteger()
Returns the x-component of the vector as integer. |
long |
getXAsLong()
Returns the x-component of the vector as long. |
IVector1 |
getY()
Returns the y-component of the vector. |
BigDecimal |
getYAsBigDecimal()
Returns the component of the vector as BigDecima;. |
double |
getYAsDouble()
Returns the component of the vector as double. |
float |
getYAsFloat()
Returns the component of the vector as float. |
int |
getYAsInteger()
Returns the component of the vector as integer. |
long |
getYAsLong()
Returns the component of the vector as float. |
int |
hashCode()
Compute the hash code. |
IVector2 |
mod(IVector2 modulus)
Applies a modulo vector. |
IVector2 |
multiply(double scalar)
Performs a scalar multiplication (scaling) on the vector. |
IVector2 |
multiply(IVector1 scalar)
Performs a scalar multiplication (scaling) on the vector. |
IVector2 |
multiply(IVector2 vector)
Performs a multiplication on the vector. |
IVector2 |
negate()
Negates the vector by negating its components. |
IVector2 |
negateX()
Negates the x-component. |
IVector2 |
negateY()
Negates the y-component. |
IVector2 |
normalize()
Converts the vector to a unit vector (normalization) |
IVector2 |
randomX(IVector1 lower,
IVector1 upper)
Sets the x-component to a random value in the interval [lower,upper] |
IVector2 |
randomY(IVector1 lower,
IVector1 upper)
Sets the y-component to a random value in the interval [lower,upper] |
void |
setX(IVector1 x)
|
void |
setY(IVector1 y)
|
IVector2 |
subtract(double scalar)
Subtracts a scalar to each component of this vector. |
IVector2 |
subtract(IVector1 scalar)
Subtracts a scalar to each component of this vector. |
IVector2 |
subtract(IVector2 vector)
Subtracts another vector to this vector, subtracting individual components. |
String |
toString()
|
IVector2 |
zero()
Sets all vector components to zero. |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final IVector2 ZERO
| Constructor Detail |
|---|
public Vector2Int()
public Vector2Int(IVector2 vector)
public Vector2Int(int scalar)
public Vector2Int(int x,
int y)
| Method Detail |
|---|
public IVector2 assign(IVector2 vector)
assign in interface IVector2vector - the other vector
public IVector2 add(double scalar)
add in interface IVector2scalar - scalar value as double
public IVector2 add(IVector1 scalar)
add in interface IVector2scalar - scalar value
public IVector2 add(IVector2 vector)
add in interface IVector2vector - the vector to add to this vector
public IVector2 subtract(double scalar)
subtract in interface IVector2scalar - scalar value as double
public IVector2 subtract(IVector1 scalar)
subtract in interface IVector2scalar - scalar value
public IVector2 subtract(IVector2 vector)
subtract in interface IVector2vector - the vector to subtract from this vector
public IVector2 mod(IVector2 modulus)
mod in interface IVector2modulus - modulus
public IVector2 multiply(double scalar)
multiply in interface IVector2scalar - the scale factor double
public IVector2 multiply(IVector1 scalar)
multiply in interface IVector2scalar - the scale factor
public IVector2 multiply(IVector2 vector)
multiply in interface IVector2vector - vector
public IVector2 divide(IVector2 vector)
divide in interface IVector2vector - vector
public IVector2 zero()
zero in interface IVector2public IVector2 negateX()
negateX in interface IVector2public IVector2 negateY()
negateY in interface IVector2public IVector2 negate()
negate in interface IVector2
public IVector2 randomX(IVector1 lower,
IVector1 upper)
randomX in interface IVector2
public IVector2 randomY(IVector1 lower,
IVector1 upper)
randomY in interface IVector2public IVector2 normalize()
normalize in interface IVector2public IVector1 getLength()
getLength in interface IVector2public IVector1 getDirection()
getDirection in interface IVector2public float getDirectionAsFloat()
getDirectionAsFloat in interface IVector2public double getDirectionAsDouble()
getDirectionAsDouble in interface IVector2public IVector1 getMean()
getMean in interface IVector2public IVector1 getDistance(IVector2 vector)
getDistance in interface IVector2vector - other vector
public IVector1 getX()
getX in interface IVector2public IVector1 getY()
getY in interface IVector2public void setX(IVector1 x)
public void setY(IVector1 y)
public int getXAsInteger()
getXAsInteger in interface IVector2public int getYAsInteger()
getYAsInteger in interface IVector2public long getXAsLong()
getXAsLong in interface IVector2public long getYAsLong()
getYAsLong in interface IVector2public float getXAsFloat()
getXAsFloat in interface IVector2public float getYAsFloat()
getYAsFloat in interface IVector2public double getXAsDouble()
getXAsDouble in interface IVector2public double getYAsDouble()
getYAsDouble in interface IVector2public BigDecimal getXAsBigDecimal()
getXAsBigDecimal in interface IVector2public BigDecimal getYAsBigDecimal()
getYAsBigDecimal in interface IVector2public IVector2 copy()
copy in interface IVector2
public Object clone()
throws CloneNotSupportedException
clone in interface IVector2clone in class ObjectCloneNotSupportedExceptionpublic boolean equals(Object obj)
equals in interface IVector2equals in class Objectobj - the object
public boolean equals(IVector2 vector)
equals in interface IVector2vector - the other vector
public int hashCode()
hashCode in class Objectpublic String toString()
toString in class Object
public static IVector2 getVector2(Integer a,
Integer b)
a - The first value.b - The second value.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||