Changelog History
-
v1.1.13 Changes
February 15, 2020- 💥 Breaking :
Tess.UsePooling
removed, it was markedObsolete
before - ⚡️ Upgraded to .NET Standard 2.0, updated solution to VS 2019
- 📚 Various documentation added
- ➕ Added example in README.md
- 📦 Available in NuGet: https://www.nuget.org/packages/LibTessDotNet
- 💥 Breaking :
-
v1.1.11
February 15, 2020 -
v1.0.68 Changes
March 27, 2018- Can now load whole folder in TessBed
- Empty triangles are now shown in bright pink
-
v1.0.66 Changes
March 24, 2018🛠 Fixes an issue with Tessellate not passing the callback.
-
v1.0.64 Changes
March 20, 2018➕ Added customisable pooling policy. Default one isn't thread safe if you use the same
Tess
instance across multiple threads.🚀 Known issues: Tessellate method doesn't pass callback, use next release.
-
v1.0.55 Changes
February 19, 2016➕ Added
double
support with assemblyLibTessDotNet.Double.dll
and namespaceLibTessDotNet.Double
. Not heavily tested but code is the same except a few hardcoded values. Any feedback welcome! -
v1.0.51 Changes
February 14, 2016➕ Added
UsePooling
option on theTess
instance to enable pooling (disabled by default). This might improve performance on systems with expensive garbage collection. Use with caution and compare performance with and without the flag. -
v1.0.49
February 13, 2016 -
v1.0.46 Changes
February 06, 2016LibTess
- ➕ Added new option to remove zero area polygons. To use it set
NoEmptyPolygons
totrue
on theTess
instance.
TessBed
- ➕ Added more visual tests (from issue #6 and #1) and associated unit tests.
- ➕ Added GUI option to remove empty polygons.
- ➕ Added "Open" button to open .dat files directly (so people can share .dat files on issues). Those files are just one point per line for the simplest shape, other options are available. See
TessBed\Data
for more examples. - Zero area polygons are now shown in red
- 🛠 Fixed an issue with test data not supporting non XY plane data
- ➕ Added new option to remove zero area polygons. To use it set
-
v1.0.32 Changes
May 13, 2015🛠 Fix unit vectors for ProjectPolygon and fix unit tests.
This makes existing tessellations different as the unit vector for the projection is now more vertical. Also, this is how the original tessellator is (GLU tess or libtess2).