Sergey Tolstov
Sergey Tolstov
@wxigsnrr The library does not provide support of projections. If you need to calculate geodesic distance between two vertices on WGS84, you could use GeometryEngine.geodesicDistanceOnWGS84(Point ptFrom, Point ptTo). The points...
That would mean to allow creation of a SpatialReference instance with a custom tolerance.
Here is how to do this: ```Point2D centroid = OperatorCentroid2D.local().execute(polygone, null);```
@SiefSeif Use OperatorDisjoint. Avoid creating objects in a loop, you could also move OperatorDisjoint.local() call outside of the loop. The spatial reference is used to extract a tolerance value of...
@acozzette In the header file you have this: namespace xxx { __declspec(dllexport) XXXXXDefaultTypeInternal _XXXX_default_instance_ } Is it possible to replace these export variables with export functions that return the reference?...