Skip to content

Commit

Permalink
Fix code style issues with dotnet_format
Browse files Browse the repository at this point in the history
  • Loading branch information
lint-action committed Nov 8, 2024
1 parent 5bb154c commit 0c818cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion SectionProperties/Utility/Parts/EllipseQuarterPart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public AreaMomentOfInertia GetMomentOfInertiaZz()

private void SetExtends(ILocalPoint2d corner, bool mirrorY = false, bool mirrorZ = false)
{

}
}
}
2 changes: 1 addition & 1 deletion SectionProperties/Utility/Parts/TrapezoidalPart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ private ILocalDomain2d GetExtends()
? a.Abs() / 2 + ElasticCentroid.Y
: b.Abs() / 2 + ElasticCentroid.Y;
Length minY = a.Abs() > b.Abs()
? ElasticCentroid.Y - a.Abs() / 2
? ElasticCentroid.Y - a.Abs() / 2
: ElasticCentroid.Y - b.Abs() / 2;
Length e = h / 3 * (a.Abs() + 2 * b.Abs()) / (a.Abs() + b.Abs());
Length maxZ = ElasticCentroid.Z + h - e;
Expand Down

0 comments on commit 0c818cb

Please sign in to comment.