Skip to content

Commit

Permalink
chore(release): version 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andywiecko committed Oct 25, 2024
1 parent d77ccd1 commit cfad4b5
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

For online version see [Github Releases].

## [3.4.0] – 2024-10-25

### Added

- Dynamic triangulation support. Introduced `DynamicInsertPoint` extension for `UnsafeTriangulator` to support dynamic point insertion.
- A new demo scene to better illustrate the functionality in [the documentation](https://andywiecko.github.io/BurstTriangulator/demo/).

### Changed

- Improved support for `TriangulatorSettings` in `UnityEditor` by adding a missing backing field, a setter, and editor-related attributes for properties.
- Refinement step optimization. Refactored the refinement step to enhance performance and simplify the code.

### Fixed

- Refinement with constraints without holes. Corrected an issue where refinement with constraints would ignore boundaries when holes were absent.
- Invalid refinement results. Fixed a rare issue where refinement could produce invalid results, especially when input data included subsegment clusters, leading to points appearing outside the triangulation domain.

## [3.3.0] – 2024-09-23

### Added
Expand Down
2 changes: 1 addition & 1 deletion Documentation~/manual/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Then, in the dependencies section, provide the desired version of the package:

```json
"dependencies": {
"com.andywiecko.burst.triangulator": "3.3.0",
"com.andywiecko.burst.triangulator": "3.4.0",
...
```

Expand Down
2 changes: 1 addition & 1 deletion Documentation~/override/partials/breadcrumb.tmpl.partial
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
<div class="container" style="
width: 80px;
line-height: 40px;
"><b>v3.3.0</b></div>
"><b>v3.4.0</b></div>
</div>
</div>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "com.andywiecko.burst.triangulator",
"version": "3.3.0",
"version": "3.4.0",
"displayName": "Burst Triangulator",
"description": "A single-file package which provides Delaunay triangulation of the given set of points with constraints and mesh refinement.",
"unity": "2022.2",
Expand Down

0 comments on commit cfad4b5

Please sign in to comment.