Uses of Class
org.apache.commons.geometry.spherical.oned.Transform1S
Packages that use Transform1S
Package
Description
This package provides basic geometry components on the 1-sphere.
-
Uses of Transform1S in org.apache.commons.geometry.spherical.oned
Fields in org.apache.commons.geometry.spherical.oned declared as Transform1SModifier and TypeFieldDescriptionprivate static final Transform1S
Transform1S.IDENTITY
Static instance representing the identity transform.private static final Transform1S
Transform1S.NEGATION
Static instance that negates azimuth values.Methods in org.apache.commons.geometry.spherical.oned that return Transform1SModifier and TypeMethodDescriptionstatic Transform1S
Transform1S.createNegation()
Return a transform instance that negates azimuth values.static Transform1S
Transform1S.createRotation
(double angle) Return a transform instance that performs a rotation with the given angle.static Transform1S
Transform1S.identity()
Return a transform instance representing the identity transform.Transform1S.inverse()
Get an instance representing the inverse transform.Transform1S.multiply
(Transform1S other) Multiply the underlying matrix of this instance by that of the argument, eg,other * this
.private static Transform1S
Transform1S.multiply
(Transform1S a, Transform1S b) Multiply two transforms together as matrices.Transform1S.negate()
Return a new transform created by pre-multiplying this instance by a transform that negates azimuth values.Transform1S.premultiply
(Transform1S other) Multiply the underlying matrix of the argument by that of this instance, eg,this * other
.Transform1S.rotate
(double angle) Return a new transform created by pre-multiplying this instance by a transform producing a rotation with the given angle.Methods in org.apache.commons.geometry.spherical.oned with parameters of type Transform1SModifier and TypeMethodDescriptionTransform1S.multiply
(Transform1S other) Multiply the underlying matrix of this instance by that of the argument, eg,other * this
.private static Transform1S
Transform1S.multiply
(Transform1S a, Transform1S b) Multiply two transforms together as matrices.Transform1S.premultiply
(Transform1S other) Multiply the underlying matrix of the argument by that of this instance, eg,this * other
.