All Versions
10
Latest Version
Avg Release Cycle
193 days
Latest Release
1525 days ago

Changelog History

  • v1.1.13 Changes

    February 15, 2020
    • ๐Ÿ’ฅ Breaking : Tess.UsePooling removed, it was marked Obsolete 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
  • 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 assembly LibTessDotNet.Double.dll and namespace LibTessDotNet.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 the Tess 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, 2016

    LibTess

    • โž• Added new option to remove zero area polygons. To use it set NoEmptyPolygons to true on the Tess 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
  • 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).