Skip to content

Commit

Permalink
Merge pull request #227 from hrntsm/develop
Browse files Browse the repository at this point in the history
Release v2.2.1
  • Loading branch information
hrntsm committed Mar 22, 2022
2 parents 4c12dd2 + 60c3a2e commit 6b8a19d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,11 @@ private static void CheckBrepOrientation(Brep brep)

private Brep ApplyWallOpen(IEnumerable<StbOpen> opens, StbWall wall, IReadOnlyList<Point3d> wallPts, Brep brep)
{
if (brep == null)
{
return brep;
}

double thickness = BrepMaker.Wall.GetThickness(_sections, wall);
var centerCurve = new PolylineCurve(wallPts);
Vector3d normal = Vector3d.CrossProduct(centerCurve.TangentAtEnd, centerCurve.TangentAtStart);
Expand Down
8 changes: 8 additions & 0 deletions website/docs/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ title: Changelog

---

## [v2.2.1 - 2022-3-22](https://github.com/hrntsm/HoaryFox/releases/tag/v2.2.1)

### 修正

- v2.2.0 の変更で壁生成に失敗することがあったため、修正

---

## [v2.2.0 - 2022-3-21](https://github.com/hrntsm/HoaryFox/releases/tag/v2.2.0)

### 追加
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ title: Changelog

---

## [v2.2.1 - 2022-3-22](https://github.com/hrntsm/HoaryFox/releases/tag/v2.2.1)

### FIX

- Fixed wall generation failure with v2.2.0 changes.

---

## [v2.2.0 - 2022-3-21](https://github.com/hrntsm/HoaryFox/releases/tag/v2.2.0)

### ADD
Expand Down

0 comments on commit 6b8a19d

Please sign in to comment.