Uses of Interface
org.apache.commons.geometry.core.Vector
-
Packages that use Vector Package Description org.apache.commons.geometry.core This package contains the core interfaces and classes for commons-geometry.org.apache.commons.geometry.euclidean This is the top-level package for Euclidean geometry components.org.apache.commons.geometry.euclidean.internal This package contains Euclidean geometry utilities and classes intended for internal use only.org.apache.commons.geometry.euclidean.oned This package provides basic 1D geometry components.org.apache.commons.geometry.euclidean.threed This package provides basic 3D geometry components.org.apache.commons.geometry.euclidean.twod This package provides basic 2D geometry components. -
-
Uses of Vector in org.apache.commons.geometry.core
Classes in org.apache.commons.geometry.core with type parameters of type Vector Modifier and Type Interface Description interface
Vector<V extends Vector<V>>
Interface representing a vector in a vector space or displacement vectors in an affine space. -
Uses of Vector in org.apache.commons.geometry.euclidean
Classes in org.apache.commons.geometry.euclidean that implement Vector Modifier and Type Class Description class
EuclideanVector<V extends EuclideanVector<V>>
Abstract base class for Euclidean vectors and points.class
MultiDimensionalEuclideanVector<V extends MultiDimensionalEuclideanVector<V>>
Abstract base class for Euclidean vectors with two or more dimensions. -
Uses of Vector in org.apache.commons.geometry.euclidean.internal
Methods in org.apache.commons.geometry.euclidean.internal with parameters of type Vector Modifier and Type Method Description static double
Vectors. checkedNorm(Vector<?> vec)
Returns the vector's norm value, throwing anIllegalArgumentException
if the value is not real (ie, not NaN or infinite) or zero. -
Uses of Vector in org.apache.commons.geometry.euclidean.oned
Classes in org.apache.commons.geometry.euclidean.oned that implement Vector Modifier and Type Class Description class
Vector1D
This class represents vectors and points in one-dimensional Euclidean space.static class
Vector1D.Unit
Represent unit vectors. -
Uses of Vector in org.apache.commons.geometry.euclidean.threed
Classes in org.apache.commons.geometry.euclidean.threed that implement Vector Modifier and Type Class Description class
Vector3D
This class represents vectors and points in three-dimensional Euclidean space.static class
Vector3D.Unit
Represents unit vectors. -
Uses of Vector in org.apache.commons.geometry.euclidean.twod
Classes in org.apache.commons.geometry.euclidean.twod that implement Vector Modifier and Type Class Description class
Vector2D
This class represents vectors and points in two-dimensional Euclidean space.static class
Vector2D.Unit
Represents unit vectors.
-