Interface VectorStorageFloating2Type
- All Superinterfaces:
VectorReadable2DType,VectorStorageType
- All Known Subinterfaces:
PVectorByteBufferedFloating2Type<T>,PVectorByteBufferedFloating3Type<T>,PVectorByteBufferedFloating4Type<T>,PVectorStorageFloating2Type<T>,PVectorStorageFloating3Type<T>,PVectorStorageFloating4Type<T>,VectorByteBufferedFloating2Type,VectorByteBufferedFloating3Type,VectorByteBufferedFloating4Type,VectorStorageFloating3Type,VectorStorageFloating4Type
- All Known Implementing Classes:
PVectorByteBufferedFloating2s16,PVectorByteBufferedFloating2s32,PVectorByteBufferedFloating2s64,PVectorByteBufferedFloating3s16,PVectorByteBufferedFloating3s32,PVectorByteBufferedFloating3s64,PVectorByteBufferedFloating4s16,PVectorByteBufferedFloating4s32,PVectorByteBufferedFloating4s64,PVectorMutable2D,PVectorMutable3D,PVectorMutable4D,VectorByteBufferedFloating2s16,VectorByteBufferedFloating2s32,VectorByteBufferedFloating2s64,VectorByteBufferedFloating3s16,VectorByteBufferedFloating3s32,VectorByteBufferedFloating3s64,VectorByteBufferedFloating4s16,VectorByteBufferedFloating4s32,VectorByteBufferedFloating4s64,VectorMutable2D,VectorMutable3D,VectorMutable4D
public interface VectorStorageFloating2Type extends VectorReadable2DType, VectorStorageType
The type of mutable 2D floating point number vectors.
-
Method Summary
Modifier and Type Method Description default voidsetVector2D(Vector2D v)Set the components from the given vector.default voidsetVector2F(Vector2F v)Set the components from the given vector.voidsetX(double x)Set thexcomponent.default voidsetXY(double x, double y)Set thexandycomponents.voidsetY(double y)Set theYcomponent.Methods inherited from interface com.io7m.jtensors.core.unparameterized.vectors.VectorReadable2DType
x, y
-
Method Details
-
setVector2D
Set the components from the given vector.- Parameters:
v- The source vector
-
setVector2F
Set the components from the given vector.- Parameters:
v- The source vector
-
setX
void setX(double x)Set thexcomponent.- Parameters:
x- The X component
-
setY
void setY(double y)Set theYcomponent.- Parameters:
y- The Y component
-
setXY
default void setXY(double x, double y)Set thexandycomponents.- Parameters:
x- The X componenty- The Y component
-