Uses of Interface
org.hipparchus.geometry.Vector
-
Packages that use Vector Package Description org.hipparchus.geometry This package is the top level package for geometry.org.hipparchus.geometry.euclidean.oned This package provides basic 1D geometry components.org.hipparchus.geometry.euclidean.threed This package provides basic 3D geometry components.org.hipparchus.geometry.euclidean.twod This package provides basic 2D geometry components. -
-
Uses of Vector in org.hipparchus.geometry
Classes in org.hipparchus.geometry with type parameters of type Vector Modifier and Type Interface Description interface
Vector<S extends Space,V extends Vector<S,V>>
This interface represents a generic vector in a vectorial space or a point in an affine space.class
VectorFormat<S extends Space,V extends Vector<S,V>>
Formats a vector in components list format "{x; y; ...}".Methods in org.hipparchus.geometry that return Vector Modifier and Type Method Description abstract Vector<S,V>
VectorFormat. parse(String source)
Parses a string to produce aVector
object.abstract Vector<S,V>
VectorFormat. parse(String source, ParsePosition pos)
Parses a string to produce aVector
object.Methods in org.hipparchus.geometry with parameters of type Vector Modifier and Type Method Description String
VectorFormat. format(Vector<S,V> vector)
Formats aVector
object to produce a string.abstract StringBuffer
VectorFormat. format(Vector<S,V> vector, StringBuffer toAppendTo, FieldPosition pos)
Formats aVector
object to produce a string. -
Uses of Vector in org.hipparchus.geometry.euclidean.oned
Classes in org.hipparchus.geometry.euclidean.oned that implement Vector Modifier and Type Class Description class
Vector1D
This class represents a 1D vector.Methods in org.hipparchus.geometry.euclidean.oned with parameters of type Vector Modifier and Type Method Description StringBuffer
Vector1DFormat. format(Vector<Euclidean1D,Vector1D> vector, StringBuffer toAppendTo, FieldPosition pos)
Formats aVector
object to produce a string. -
Uses of Vector in org.hipparchus.geometry.euclidean.threed
Classes in org.hipparchus.geometry.euclidean.threed that implement Vector Modifier and Type Class Description class
Vector3D
This class implements vectors in a three-dimensional space.Methods in org.hipparchus.geometry.euclidean.threed with parameters of type Vector Modifier and Type Method Description StringBuffer
Vector3DFormat. format(Vector<Euclidean3D,Vector3D> vector, StringBuffer toAppendTo, FieldPosition pos)
Formats aVector3D
object to produce a string. -
Uses of Vector in org.hipparchus.geometry.euclidean.twod
Classes in org.hipparchus.geometry.euclidean.twod that implement Vector Modifier and Type Class Description class
Vector2D
This class represents a 2D vector.Methods in org.hipparchus.geometry.euclidean.twod with parameters of type Vector Modifier and Type Method Description StringBuffer
Vector2DFormat. format(Vector<Euclidean2D,Vector2D> vector, StringBuffer toAppendTo, FieldPosition pos)
Formats aVector
object to produce a string.
-