Home
last modified time | relevance | path

Searched defs:S2Point (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math3/geometry/spherical/twod/
DS2Point.java38 public class S2Point implements Point<Sphere2D> { class
83 public S2Point(final double theta, final double phi) in S2Point() method in S2Point
93 public S2Point(final Vector3D vector) throws MathArithmeticException { in S2Point() method in S2Point
103 private S2Point(final double theta, final double phi, final Vector3D vector) { in S2Point() method in S2Point
/external/s2-geometry-library-java/src/com/google/common/geometry/
DS2Point.java24 public strictfp class S2Point implements Comparable<S2Point> { class
30 public S2Point() { in S2Point() method in S2Point
34 public S2Point(double x, double y, double z) { in S2Point() method in S2Point
DS2PolygonBuilder.java519 private void moveVertices(Map<S2Point, S2Point> mergeMap) { in moveVertices()