Skip to content

Commit

Permalink
Apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
hrntsm committed Jun 3, 2023
1 parent a42996f commit c28bcdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion HoaryFox/RH7/Component/Utils/Geometry/SectionCurve.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ public static SectionCurve CreateSolidColumnPipe(Point3d sectionPoint, double ou
return new SectionCurve
{
OuterCurve = SectionCornerPoints.ColumnPipe(sectionPoint, outerDiameter / 2, xAxis),
InnerCurve = outerDiameter != innerDiameter ? SectionCornerPoints.ColumnPipe(sectionPoint, innerDiameter / 2, xAxis) : null,
InnerCurve = outerDiameter != innerDiameter
? SectionCornerPoints.ColumnPipe(sectionPoint, innerDiameter / 2, xAxis)
: null,
Shape = SectionShape.Circle,
Type = SectionType.Solid,
XAxis = xAxis,
Expand Down

0 comments on commit c28bcdf

Please sign in to comment.