Uses of Class
edu.uci.ics.jung.algorithms.layout.PolarPoint
-
Packages that use PolarPoint Package Description edu.uci.ics.jung.algorithms.layout Algorithms for assigning 2D coordinates (typically used for graph visualizations) to vertices. -
-
Uses of PolarPoint in edu.uci.ics.jung.algorithms.layout
Fields in edu.uci.ics.jung.algorithms.layout with type parameters of type PolarPoint Modifier and Type Field Description protected com.google.common.cache.LoadingCache<V,PolarPoint>
BalloonLayout. polarLocations
protected java.util.Map<V,PolarPoint>
RadialTreeLayout. polarLocations
Methods in edu.uci.ics.jung.algorithms.layout that return PolarPoint Modifier and Type Method Description static PolarPoint
PolarPoint. cartesianToPolar(double x, double y)
static PolarPoint
PolarPoint. cartesianToPolar(java.awt.geom.Point2D point)
Methods in edu.uci.ics.jung.algorithms.layout that return types with arguments of type PolarPoint Modifier and Type Method Description java.util.Map<V,PolarPoint>
RadialTreeLayout. getPolarLocations()
Methods in edu.uci.ics.jung.algorithms.layout with parameters of type PolarPoint Modifier and Type Method Description static java.awt.geom.Point2D
PolarPoint. polarToCartesian(PolarPoint polar)
void
PolarPoint. setLocation(PolarPoint p)
Sets the angle and radius of this point to those ofp
.
-