Uses of Class
org.apache.commons.geometry.euclidean.twod.PolarCoordinates
-
Packages that use PolarCoordinates Package Description org.apache.commons.geometry.euclidean.twod This package provides basic 2D geometry components.org.apache.commons.geometry.spherical.oned This package provides basic geometry components on the 1-sphere. -
-
Uses of PolarCoordinates in org.apache.commons.geometry.euclidean.twod
Methods in org.apache.commons.geometry.euclidean.twod that return PolarCoordinates Modifier and Type Method Description static PolarCoordinates
PolarCoordinates. fromCartesian(double x, double y)
Convert the given Cartesian coordinates to polar form.static PolarCoordinates
PolarCoordinates. fromCartesian(Vector2D vec)
Convert the given Cartesian coordinates to polar form.static PolarCoordinates
PolarCoordinates. of(double radius, double azimuth)
Return a new instance with the given polar coordinate values.static PolarCoordinates
PolarCoordinates. parse(java.lang.String input)
Parse the given string and return a new polar coordinates instance. -
Uses of PolarCoordinates in org.apache.commons.geometry.spherical.oned
Methods in org.apache.commons.geometry.spherical.oned with parameters of type PolarCoordinates Modifier and Type Method Description static Point1S
Point1S. from(PolarCoordinates polar)
Create a new point instance containing an azimuth value equal to that of the given set of polar coordinates.
-