Searched refs:faceUvToXyz (Results 1 – 5 of 5) sorted by relevance
/external/s2-geometry-library-java/tests/com/google/common/geometry/ |
D | S2Test.java | 72 S2Point center = S2Projections.faceUvToXyz(face, 0, 0); in testFaceUVtoXYZ() 83 S2Projections.faceUvToXyz(face, 0, 0)), 1.0); in testFaceUVtoXYZ() 92 assertEquals(S2Projections.faceUvToXyz(face, sign, -sign), in testFaceUVtoXYZ() 93 S2Projections.faceUvToXyz((face + 1) % 6, -1, -1)); in testFaceUVtoXYZ() 104 S2Projections.faceUvToXyz(face, x, -1), S2Projections.faceUvToXyz(face, x, 1)) in testUVNorms() 108 S2Projections.faceUvToXyz(face, -1, x), S2Projections.faceUvToXyz(face, 1, x)) in testUVNorms() 118 S2Projections.faceUvToXyz(face, 1, 0), S2Projections.faceUvToXyz(face, 0, 0))); in testUVAxes() 120 S2Projections.faceUvToXyz(face, 0, 1), S2Projections.faceUvToXyz(face, 0, 0))); in testUVAxes()
|
D | S2CapTest.java | 180 S2Cell edgeCell = new S2Cell(S2Projections.faceUvToXyz(face, 0, 1 - EPS)); in testCells() 183 S2Cell cornerCell = new S2Cell(S2Projections.faceUvToXyz(face, 1 - EPS, 1 - EPS)); in testCells()
|
/external/s2-geometry-library-java/src/com/google/common/geometry/ |
D | S2Cell.java | 96 return S2Projections.faceUvToXyz(face, uv[0][(k >> 1) ^ (k & 1)], uv[1][k >> 1]); in getVertexRaw() 281 S2Cap cap = S2Cap.fromAxisHeight(S2Point.normalize(S2Projections.faceUvToXyz(face, u, v)), 0); in getCapBound() 407 S2Point p = S2Projections.faceUvToXyz(face, uv[0][i], uv[1][j]); in getLatitude() 412 S2Point p = S2Projections.faceUvToXyz(face, uv[0][i], uv[1][j]); in getLongitude()
|
D | S2Projections.java | 271 public static S2Point faceUvToXyz(int face, double u, double v) { in faceUvToXyz() method in S2Projections 377 return faceUvToXyz(face, 0, 0); in getNorm()
|
D | S2CellId.java | 843 return S2Projections.faceUvToXyz(face, u, v); in faceSiTiToXYZ() 866 S2Point p = S2Projections.faceUvToXyz(face, s, t); in fromFaceIJWrap()
|