You've already forked nyx
mirror of
https://github.com/rls-moe/nyx
synced 2025-12-16 09:30:41 +00:00
MVP, no mod tools or anything but it works
This commit is contained in:
25
vendor/github.com/tidwall/grect/README.md
generated
vendored
Normal file
25
vendor/github.com/tidwall/grect/README.md
generated
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
GRECT
|
||||
====
|
||||
|
||||
Quickly get the outer rectangle for GeoJSON, WKT, WKB.
|
||||
|
||||
```go
|
||||
r := grect.Get(`{
|
||||
"type": "Polygon",
|
||||
"coordinates": [
|
||||
[ [100.0, 0.0], [101.0, 0.0], [101.0, 1.0],
|
||||
[100.0, 1.0], [100.0, 0.0] ]
|
||||
]
|
||||
}`)
|
||||
fmt.Printf("%v %v\n", r.Min, r.Max)
|
||||
// Output:
|
||||
// [100 0] [101 1]
|
||||
```
|
||||
|
||||
## Contact
|
||||
Josh Baker [@tidwall](http://twitter.com/tidwall)
|
||||
|
||||
## License
|
||||
|
||||
GRECT source code is available under the MIT [License](/LICENSE).
|
||||
|
||||
Reference in New Issue
Block a user