Example usage for com.google.common.geometry S2Point get

List of usage examples for com.google.common.geometry S2Point get

Introduction

In this page you can find the example usage for com.google.common.geometry S2Point get.

Prototype

public double get(int axis) 

Source Link

Usage

From source file:org.apache.lucene.spatial.spatial4j.Geo3dShapeFactory.java

private GeoPoint getGeoPoint(S2Point point) {
    return planetModel.createSurfacePoint(point.get(0), point.get(1), point.get(2));
}