Module swim.math
Package swim.math

Class VectorRN

  • All Implemented Interfaces:
    Debug

    public class VectorRN
    extends Object
    implements Debug
    • Constructor Detail

      • VectorRN

        public VectorRN​(double... array)
    • Method Detail

      • of

        public static VectorRN of​(double... array)
      • dimension

        public final int dimension()
      • get

        public final double get​(int i)
      • opposite

        public final VectorRN opposite()
      • times

        public final VectorRN times​(double scalar)
      • toValue

        public Value toValue()
      • canEqual

        protected boolean canEqual​(VectorRN that)
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • debug

        public void debug​(Output<?> output)
        Description copied from interface: Debug
        Writes a developer readable, debug-formatted string representation of this object to output.
        Specified by:
        debug in interface Debug