Package jadex.extension.envsupport.math
Class Vector3Double
- java.lang.Object
-
- jadex.extension.envsupport.math.Vector3Double
-
-
Constructor Summary
Constructors Constructor Description Vector3Double()
Creates a new Vector2Double with the value (0,0).Vector3Double(double scalar)
Creates a new Vector2 using the scalar to assign the value (scalar,scalar).Vector3Double(double x, double y, double z)
Creates a new Vector2 with the given value.Vector3Double(IVector3 vector)
Creates a new Vector3 with the same value as the input vector.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description IVector3
add(double scalar)
Adds a scalar to each component of this vector.IVector3
add(IVector1 scalar)
Adds a scalar to each component of this vector.IVector3
add(IVector3 vector)
Adds another vector to this vector, adding individual components.IVector3
assign(IVector3 vector)
Assigns this vector the values of another vector.java.lang.Object
clone()
Generates a deep clone of the vector.IVector3
copy()
Makes a copy of the vector without using the complex clone interface.IVector3
divide(IVector3 vector)
Performs a division on the vector.boolean
equals(IVector3 vector)
Compares the vector to another vector.boolean
equals(java.lang.Object obj)
Compares the vector to an objectIVector2
getDirection()
Returns the direction (theta) of the vector.IVector1
getDistance(IVector3 vector)
Returns the distance to another vector.IVector1
getLength()
Returns the length (magnitude) of the vector.static IVector3
getVector3(java.lang.Double x, java.lang.Double y, java.lang.Double z)
Get a vector for three doubles.IVector1
getX()
Returns the x-component of the vector.java.math.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.java.math.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.IVector1
getZ()
Returns the z-component of the vector.java.math.BigDecimal
getZAsBigDecimal()
Returns the component of the vector as BigDecima;.double
getZAsDouble()
Returns the component of the vector as double.float
getZAsFloat()
Returns the component of the vector as float.int
getZAsInteger()
Returns the component of the vector as integer.long
getZAsLong()
Returns the component of the vector as float.int
hashCode()
Compute the hash code.IVector3
mod(IVector3 modulus)
Applies a modulo vector.IVector3
multiply(double scalar)
Performs a scalar multiplication (scaling) on the vector.IVector3
multiply(IVector1 scalar)
Performs a scalar multiplication (scaling) on the vector.IVector3
multiply(IVector3 vector)
Performs a multiplication on the vector.IVector3
negate()
Negates the vector by negating its components.IVector3
negateX()
Negates the x-component.IVector3
negateY()
Negates the y-component.IVector3
negateZ()
Negates the z-component.IVector3
normalize()
Converts the vector to a unit vector (normalization)IVector3
randomX(IVector1 lower, IVector1 upper)
Sets the x-component to a random value in the interval [lower,upper]IVector3
randomY(IVector1 lower, IVector1 upper)
Sets the y-component to a random value in the interval [lower,upper]IVector3
randomZ(IVector1 lower, IVector1 upper)
Sets the z-component to a random value in the interval [lower,upper]void
setX(IVector1 x)
void
setY(IVector1 y)
void
setZ(IVector1 z)
IVector3
subtract(double scalar)
Subtracts a scalar to each component of this vector.IVector3
subtract(IVector1 scalar)
Subtracts a scalar to each component of this vector.IVector3
subtract(IVector3 vector)
Subtracts another vector to this vector, subtracting individual components.java.lang.String
toString()
IVector3
zero()
Sets all vector components to zero.
-
-
-
Field Detail
-
ZERO
public static final IVector3 ZERO
Zero vector.
-
-
Constructor Detail
-
Vector3Double
public Vector3Double()
Creates a new Vector2Double with the value (0,0).
-
Vector3Double
public Vector3Double(IVector3 vector)
Creates a new Vector3 with the same value as the input vector.
-
Vector3Double
public Vector3Double(double scalar)
Creates a new Vector2 using the scalar to assign the value (scalar,scalar).
-
Vector3Double
public Vector3Double(double x, double y, double z)
Creates a new Vector2 with the given value.
-
-
Method Detail
-
add
public IVector3 add(double scalar)
Description copied from interface:IVector3
Adds a scalar to each component of this vector.
-
add
public IVector3 add(IVector1 scalar)
Description copied from interface:IVector3
Adds a scalar to each component of this vector.
-
add
public IVector3 add(IVector3 vector)
Description copied from interface:IVector3
Adds another vector to this vector, adding individual components.
-
subtract
public IVector3 subtract(double scalar)
Description copied from interface:IVector3
Subtracts a scalar to each component of this vector.
-
subtract
public IVector3 subtract(IVector1 scalar)
Description copied from interface:IVector3
Subtracts a scalar to each component of this vector.
-
subtract
public IVector3 subtract(IVector3 vector)
Description copied from interface:IVector3
Subtracts another vector to this vector, subtracting individual components.
-
mod
public IVector3 mod(IVector3 modulus)
Description copied from interface:IVector3
Applies a modulo vector. The modulus will be added first so that values in the interval (-modulus, 0) will wrap over into the positive range.
-
multiply
public IVector3 multiply(double scalar)
Description copied from interface:IVector3
Performs a scalar multiplication (scaling) on the vector.
-
multiply
public IVector3 multiply(IVector1 scalar)
Description copied from interface:IVector3
Performs a scalar multiplication (scaling) on the vector.
-
multiply
public IVector3 multiply(IVector3 vector)
Description copied from interface:IVector3
Performs a multiplication on the vector.
-
zero
public IVector3 zero()
Description copied from interface:IVector3
Sets all vector components to zero.
-
negateX
public IVector3 negateX()
Description copied from interface:IVector3
Negates the x-component.
-
negateY
public IVector3 negateY()
Description copied from interface:IVector3
Negates the y-component.
-
negateZ
public IVector3 negateZ()
Description copied from interface:IVector3
Negates the z-component.
-
negate
public IVector3 negate()
Description copied from interface:IVector3
Negates the vector by negating its components.
-
randomX
public IVector3 randomX(IVector1 lower, IVector1 upper)
Description copied from interface:IVector3
Sets the x-component to a random value in the interval [lower,upper]
-
randomY
public IVector3 randomY(IVector1 lower, IVector1 upper)
Description copied from interface:IVector3
Sets the y-component to a random value in the interval [lower,upper]
-
randomZ
public IVector3 randomZ(IVector1 lower, IVector1 upper)
Description copied from interface:IVector3
Sets the z-component to a random value in the interval [lower,upper]
-
normalize
public IVector3 normalize()
Description copied from interface:IVector3
Converts the vector to a unit vector (normalization)
-
getLength
public IVector1 getLength()
Description copied from interface:IVector3
Returns the length (magnitude) of the vector.
-
getDirection
public IVector2 getDirection()
Description copied from interface:IVector3
Returns the direction (theta) of the vector.- Specified by:
getDirection
in interfaceIVector3
- Returns:
- vector direction
-
getDistance
public IVector1 getDistance(IVector3 vector)
Description copied from interface:IVector3
Returns the distance to another vector.- Specified by:
getDistance
in interfaceIVector3
- Parameters:
vector
- other vector- Returns:
- distance
-
getX
public IVector1 getX()
Description copied from interface:IVector3
Returns the x-component of the vector.
-
getY
public IVector1 getY()
Description copied from interface:IVector3
Returns the y-component of the vector.
-
getZ
public IVector1 getZ()
Description copied from interface:IVector3
Returns the z-component of the vector.
-
setX
public void setX(IVector1 x)
-
setY
public void setY(IVector1 y)
-
setZ
public void setZ(IVector1 z)
-
getXAsInteger
public int getXAsInteger()
Returns the x-component of the vector as integer.- Specified by:
getXAsInteger
in interfaceIVector3
- Returns:
- x-component as integer
-
getYAsInteger
public int getYAsInteger()
Returns the component of the vector as integer.- Specified by:
getYAsInteger
in interfaceIVector3
- Returns:
- y-component as float
-
getZAsInteger
public int getZAsInteger()
Returns the component of the vector as integer.- Specified by:
getZAsInteger
in interfaceIVector3
- Returns:
- y-component as float
-
getXAsLong
public long getXAsLong()
Returns the x-component of the vector as long.- Specified by:
getXAsLong
in interfaceIVector3
- Returns:
- x-component as long
-
getYAsLong
public long getYAsLong()
Returns the component of the vector as float.- Specified by:
getYAsLong
in interfaceIVector3
- Returns:
- y-component as float
-
getZAsLong
public long getZAsLong()
Returns the component of the vector as float.- Specified by:
getZAsLong
in interfaceIVector3
- Returns:
- y-component as float
-
getXAsFloat
public float getXAsFloat()
Description copied from interface:IVector3
Returns the x-component of the vector as float.- Specified by:
getXAsFloat
in interfaceIVector3
- Returns:
- x-component as float
-
getYAsFloat
public float getYAsFloat()
Description copied from interface:IVector3
Returns the component of the vector as float.- Specified by:
getYAsFloat
in interfaceIVector3
- Returns:
- y-component as float
-
getZAsFloat
public float getZAsFloat()
Description copied from interface:IVector3
Returns the component of the vector as float.- Specified by:
getZAsFloat
in interfaceIVector3
- Returns:
- z-component as float
-
getXAsDouble
public double getXAsDouble()
Description copied from interface:IVector3
Returns the x-component of the vector as double.- Specified by:
getXAsDouble
in interfaceIVector3
- Returns:
- x-component as double
-
getYAsDouble
public double getYAsDouble()
Description copied from interface:IVector3
Returns the component of the vector as double.- Specified by:
getYAsDouble
in interfaceIVector3
- Returns:
- y-component as double
-
getZAsDouble
public double getZAsDouble()
Description copied from interface:IVector3
Returns the component of the vector as double.- Specified by:
getZAsDouble
in interfaceIVector3
- Returns:
- z-component as double
-
getXAsBigDecimal
public java.math.BigDecimal getXAsBigDecimal()
Description copied from interface:IVector3
Returns the x-component of the vector as BigDecimal.- Specified by:
getXAsBigDecimal
in interfaceIVector3
- Returns:
- x-component as BigDecimal
-
getYAsBigDecimal
public java.math.BigDecimal getYAsBigDecimal()
Description copied from interface:IVector3
Returns the component of the vector as BigDecima;.- Specified by:
getYAsBigDecimal
in interfaceIVector3
- Returns:
- y-component as BigDecimal
-
getZAsBigDecimal
public java.math.BigDecimal getZAsBigDecimal()
Description copied from interface:IVector3
Returns the component of the vector as BigDecima;.- Specified by:
getZAsBigDecimal
in interfaceIVector3
- Returns:
- y-component as BigDecimal
-
copy
public IVector3 copy()
Description copied from interface:IVector3
Makes a copy of the vector without using the complex clone interface.
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedException
Description copied from interface:IVector3
Generates a deep clone of the vector.
-
equals
public boolean equals(java.lang.Object obj)
Description copied from interface:IVector3
Compares the vector to an object
-
equals
public boolean equals(IVector3 vector)
Description copied from interface:IVector3
Compares the vector to another vector. The vectors are equal if the components are equal.
-
hashCode
public int hashCode()
Compute the hash code.- Overrides:
hashCode
in classjava.lang.Object
- Returns:
- The hash code.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getVector3
public static IVector3 getVector3(java.lang.Double x, java.lang.Double y, java.lang.Double z)
Get a vector for three doubles.- Parameters:
x
- The first value.y
- The second value.z
- The second value- Returns:
- The vector (null if at least one of args is null).
-
-