Kunlin Yu
Kunlin Yu
I try to use NetTopologySuite to do the triangulation for polygons to make a mesh for unity game. I Use NetTopologySuite.Triangulate.ConformingDelaunayTriangulationBuilder Then I got an error: Too many splitting iterations...
There is one warning "This function does not work on GEOMETRYCOLLECTIONs." in the documentation: http://www.h2gis.org/docs/dev/ST_Intersects/ But according to : https://github.com/locationtech/jts/blame/master/doc/JTS_Version_History.md#L370 and: https://github.com/locationtech/jts/blob/jts-1.15.0/modules/core/src/main/java/org/locationtech/jts/geom/Geometry.java#L765 I think we can remove the warning?
I defined a JSON file format. And generate schema by Newtonsoft.Json.Schema. ```json { "key1": "value1", "key2":"value2", } ``` In case, I modify the C# code, which may change the schema,...
if I call "from_url" whith a non exist ip adress, it will block in easyclient.cc:102. more than two minutes!
Signed-off-by: Kunlin Yu
could you please upgrade: jaxb-xjc:3.0.0-M4 to: jaxb-xjc:3.0.0 ? I think the jaxb-xjc:3.0.0 is more official than 3.0.0-M4. And it contain some feature I need.
Signed-off-by: Kunlin Yu
https://github.com/pboettch/json-schema-validator/blob/08d8a52a8a1353b6bc953b63f7c6763e74e6047b/README.md?plain=1#L115C41-L115C41 can we remove this section?
I try to cross compile GKlib but i failed: ```bash sudo apt install g++-aarch64-linux-gnu git clone [email protected]:KarypisLab/GKlib.git cd GKlib mkdir build && cd build cmake -DCMAKE_CROSSCOMPILING=ON DCMAKE_SYSTEM_NAME=Linux -DCMAKE_SYSTEM_PROCESSOR=aarch64 -DCMAKE_C_COMPILER=/usr/bin/aarch64-linux-gnu-gcc .....