Uses of Class
org.anchoranalysis.spatial.point.Tuple3d
| Package | Description |
|---|---|
| org.anchoranalysis.spatial.orientation |
Various methods to specify the orientation (general direction) of an entity.
|
| org.anchoranalysis.spatial.point |
A cartesian-coordinate, across varying primitive types, in 2D and 3D space.
|
-
Uses of Tuple3d in org.anchoranalysis.spatial.orientation
Methods in org.anchoranalysis.spatial.orientation with parameters of type Tuple3d Modifier and Type Method Description Point3dRotationMatrix. rotatePoint(Tuple3d point)Performs a rotation on a single point, encoded as aPoint3d.Constructors in org.anchoranalysis.spatial.orientation with parameters of type Tuple3d Constructor Description DirectionVector(Tuple3d vector)Creates reusingTuple3dinternally for the dimension's values. -
Uses of Tuple3d in org.anchoranalysis.spatial.point
Classes in org.anchoranalysis.spatial.point with type parameters of type Tuple3d Modifier and Type Class Description classComparator3d<T extends Tuple3d>Imposes an ordering on any sub-type ofTuple3d.Subclasses of Tuple3d in org.anchoranalysis.spatial.point Modifier and Type Class Description classPoint3dA three-dimensional point of double values.classVector3dA three-dimensional vector of double values.Methods in org.anchoranalysis.spatial.point with parameters of type Tuple3d Modifier and Type Method Description voidTuple3d. add(Tuple3d toAdd)Arithmetically adds aTuple3d's values across each dimension.doubleTuple3d. dotProduct(Tuple3d other)Computes the dot-product of the tuple with another.static Point3dPoint3d. immutableAdd(Tuple3d tuple1, Tuple3d tuple2)Adds two tuples immutably.static Point3dPoint3d. immutableScale(Tuple3d tuple, int factor)Scales a tuple immutably.static Point3dPoint3d. immutableSubtract(Tuple3d tuple, Tuple3d toSubtract)static Point3dPoint3d. immutableSubtract(Tuple3i tuple, Tuple3d toSubtract)voidTuple3d. increment(Tuple3d shift)Increments each component's value by the corresponding value in aTuple3d.Point3dPoint3d. max(Tuple3d point)Element-wise maximum between this point and another.Point3dPoint3d. min(Tuple3d point)Element-wise minimum between this point and another.voidTuple3d. subtract(Tuple3d toSubtract)Arithmetically subtract aTuple3d's values across each dimension.