Skip to content

Commit

Permalink
more Returns 0 (E_SUCCESS) on success.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajfriend committed Oct 26, 2024
1 parent ac5d348 commit c856fba
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions website/docs/api/traversal.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,8 @@ H3Error gridDiskDistances(H3Index origin, int k, H3Index* out, int* distances);
Elements of the output array may be left as zero,
which can happen when crossing a pentagon.

Returns 0 (`E_SUCCESS`) on success.

</TabItem>
<TabItem value="java">

Expand Down Expand Up @@ -870,6 +872,8 @@ versions of H3.
H3Error cellToLocalIj(H3Index origin, H3Index h3, uint32_t mode, CoordIJ *out);
```

Returns 0 (`E_SUCCESS`) on success.

</TabItem>
<TabItem value="java">

Expand Down Expand Up @@ -950,6 +954,8 @@ versions of H3.
H3Error localIjToCell(H3Index origin, const CoordIJ *ij, uint32_t mode, H3Index *out);
```
Returns 0 (`E_SUCCESS`) on success.
</TabItem>
<TabItem value="java">
Expand Down
6 changes: 6 additions & 0 deletions website/docs/api/vertex.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ for hexagonal cells, and 0 and 4 (inclusive) for pentagonal cells.
H3Error cellToVertex(H3Index origin, int vertexNum, H3Index *out);
```
Returns 0 (`E_SUCCESS`) on success.
</TabItem>
<TabItem value="java">
Expand Down Expand Up @@ -110,6 +112,8 @@ The length of the `out` array must be 6.
If the given cell is a pentagon, one member of the
array will be set to `0`.
Returns 0 (`E_SUCCESS`) on success.
</TabItem>
<TabItem value="java">
Expand Down Expand Up @@ -182,6 +186,8 @@ Returns the latitude and longitude coordinates of the given vertex.
H3Error vertexToLatLng(H3Index vertex, LatLng *point);
```
Returns 0 (`E_SUCCESS`) on success.
</TabItem>
<TabItem value="java">
Expand Down

0 comments on commit c856fba

Please sign in to comment.