Package com.io7m.jtensors.storage.heap
Class VectorMutable4D
java.lang.Object
com.io7m.jtensors.storage.heap.VectorMutable4D
- All Implemented Interfaces:
VectorReadable2DType,VectorReadable3DType,VectorReadable4DType,VectorStorageFloating2Type,VectorStorageFloating3Type,VectorStorageFloating4Type,VectorStorageType
public final class VectorMutable4D extends java.lang.Object implements VectorStorageFloating4Type
A heap-based vector.
-
Constructor Summary
Constructors Constructor Description VectorMutable4D()Create a new vector. -
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)inthashCode()voidsetW(double in_w)Set thewcomponent.voidsetX(double in_x)Set thexcomponent.voidsetY(double in_y)Set theYcomponent.voidsetZ(double in_z)Set thezcomponent.java.lang.StringtoString()doublew()doublex()doubley()doublez()Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface com.io7m.jtensors.storage.api.unparameterized.vectors.VectorStorageFloating2Type
setVector2D, setVector2F, setXYMethods inherited from interface com.io7m.jtensors.storage.api.unparameterized.vectors.VectorStorageFloating3Type
setVector3D, setVector3F, setXYZMethods inherited from interface com.io7m.jtensors.storage.api.unparameterized.vectors.VectorStorageFloating4Type
setVector4D, setVector4F, setXYZW
-
Constructor Details
-
VectorMutable4D
public VectorMutable4D()Create a new vector.
-
-
Method Details
-
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-
x
public double x()- Specified by:
xin interfaceVectorReadable2DType- Returns:
- The
xcomponent
-
y
public double y()- Specified by:
yin interfaceVectorReadable2DType- Returns:
- The
ycomponent
-
w
public double w()- Specified by:
win interfaceVectorReadable4DType- Returns:
- The
wcomponent
-
z
public double z()- Specified by:
zin interfaceVectorReadable3DType- Returns:
- The
zcomponent
-
setZ
public void setZ(double in_z)Description copied from interface:VectorStorageFloating3TypeSet thezcomponent.- Specified by:
setZin interfaceVectorStorageFloating3Type- Parameters:
in_z- The Z component
-
setX
public void setX(double in_x)Description copied from interface:VectorStorageFloating2TypeSet thexcomponent.- Specified by:
setXin interfaceVectorStorageFloating2Type- Parameters:
in_x- The X component
-
setY
public void setY(double in_y)Description copied from interface:VectorStorageFloating2TypeSet theYcomponent.- Specified by:
setYin interfaceVectorStorageFloating2Type- Parameters:
in_y- The Y component
-
setW
public void setW(double in_w)Description copied from interface:VectorStorageFloating4TypeSet thewcomponent.- Specified by:
setWin interfaceVectorStorageFloating4Type- Parameters:
in_w- The W component
-