Skip to content

Commit

Permalink
Update for 0.6.9 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nicklockwood committed Feb 9, 2023
1 parent 24f6f93 commit 3532205
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,11 @@
# Change Log

## [0.6.9](https://github.com/nicklockwood/Euclid/releases/tag/0.6.9) (2023-02-09)

- Fixed bug when triangulating convex polygons with collinear points
- Fixed `Polygon.area` calculation for polygons not located on the XY plane
- Fixed `submeshes` property for meshes formed using a union operation

## [0.6.8](https://github.com/nicklockwood/Euclid/releases/tag/0.6.8) (2023-01-16)

- Fixed flipped front/back return values for `Mesh.split(along:)` function return value order
Expand Down
4 changes: 2 additions & 2 deletions Euclid.podspec.json
@@ -1,6 +1,6 @@
{
"name": "Euclid",
"version": "0.6.8",
"version": "0.6.9",
"license": {
"type": "MIT",
"file": "LICENSE.md"
Expand All @@ -10,7 +10,7 @@
"authors": "Nick Lockwood",
"source": {
"git": "https://github.com/nicklockwood/Euclid.git",
"tag": "0.6.8"
"tag": "0.6.9"
},
"source_files": "Sources",
"requires_arc": true,
Expand Down
4 changes: 2 additions & 2 deletions Euclid.xcodeproj/project.pbxproj
Expand Up @@ -754,7 +754,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.6.8;
MARKETING_VERSION = 0.6.9;
OTHER_SWIFT_FLAGS = "-Xfrontend -warn-long-expression-type-checking=75";
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.Euclid;
PRODUCT_MODULE_NAME = "$(PRODUCT_NAME:c99extidentifier)";
Expand Down Expand Up @@ -787,7 +787,7 @@
"@executable_path/../Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 0.6.8;
MARKETING_VERSION = 0.6.9;
OTHER_SWIFT_FLAGS = "-Xfrontend -warn-long-expression-type-checking=75";
PRODUCT_BUNDLE_IDENTIFIER = com.charcoaldesign.Euclid;
PRODUCT_MODULE_NAME = "$(PRODUCT_NAME:c99extidentifier)";
Expand Down
2 changes: 1 addition & 1 deletion Sources/Quaternion.swift
Expand Up @@ -269,7 +269,7 @@ public extension Quaternion {
return self / sqrt(lengthSquared)
}

// Performs a spherical linear interpolation between two quaternions.
/// Performs a spherical linear interpolation between two quaternions.
/// - Parameters:
/// - q: The quaternion to interpolate towards.
/// - t: The normalized extent of interpolation, from 0 to 1.
Expand Down

0 comments on commit 3532205

Please sign in to comment.