Class VectorMutable2D

java.lang.Object
com.io7m.jtensors.storage.heap.VectorMutable2D
All Implemented Interfaces:
VectorReadable2DType, VectorStorageFloating2Type, VectorStorageType

public final class VectorMutable2D
extends java.lang.Object
implements VectorStorageFloating2Type
A heap-based vector.
  • Constructor Summary

    Constructors 
    Constructor Description
    VectorMutable2D()
    Create a new vector.
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object o)  
    int hashCode()  
    void setX​(double in_x)
    Set the x component.
    void setY​(double in_y)
    Set the Y component.
    java.lang.String toString()  
    double x()  
    double y()  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface com.io7m.jtensors.storage.api.unparameterized.vectors.VectorStorageFloating2Type

    setVector2D, setVector2F, setXY
  • Constructor Details

  • Method Details