CGALDotNet icon indicating copy to clipboard operation
CGALDotNet copied to clipboard

C# wrapper for CGAL

Results 14 CGALDotNet issues
Sort by recently updated
recently updated
newest added

Hey @Scrawk, First of all many thanks for creating and maintaining this repo! I'm interested in using the Alpha Wrapping functionality released in the latest version of CGAL: https://www.cgal.org/2022/05/18/alpha_wrap/ Any...

To create a Polygon from a list of points and faces is really fast. But retrieving back the points is really slow. Right now it's faster to export an PLY...

I noticed that in PostgreSQL using sfcgal extension you can create Polyhedrons using polygons with holes as surfaces. Is it possible to support this in this project?

My test: ``` var s1 = new Segment2d(0, 0, 1, 1); var s2 = new Segment2d(0, 1, 1, 0); var i = CGALIntersections.Intersection(s1, s2); ``` Expecting to find a point...

Does CGALDotNet support Boolean operations on polygons containing arcs? Can you give an example of performing Boolean operations on a circle and a square

As there doesn't seem to be a lot of robust straight skeleton implementations for .NET, it would be a great addition to the library. Possibly helpful resource: https://github.com/martindevans/CGAL_StraightSkeleton_Wrapper

Hi, CGALDotNet works like a charm in Unity, but now I need to use it in a standard C# winform project. Problem is, at the first instruction that uses CGALDotNet:...

Edited for clarity: I have a polygon (array of Vector2s) and an array of polygons that represent interior holes. After I create the PolygonWithHoles2 instance using the outermost polygon, I...

You have done a very good and hard job by converting all those functionality from CGAL to .net, as .net lacks good library for Meshing, etc. My question is does...

Hi @Scrawk, Great job with porting the `CGAL` library! Recently, I conducted some benchmarks of your package compared to my package, [`BurstTriangulator`][package] (and others). The package is targeted for C#...