Skip to content

Commit

Permalink
trigger the large_media update idaholab#21903
Browse files Browse the repository at this point in the history
  • Loading branch information
oanaoana committed Mar 28, 2023
1 parent e3aea12 commit 40f1a47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion framework/src/meshgenerators/TransfiniteMeshGenerator.C
Expand Up @@ -501,7 +501,8 @@ TransfiniteMeshGenerator::computeMidPoint(const Point & P1,
const Real ym = (P1(1) + P2(1)) / 2;
// The arc can be inverted into the domain (concave) or outward (convex)
// we use the convention that if the height is given as negative we seek a concave arc
// if "height" is positive then we seek a convex arc
// if "height" is positive then we seek a convex arc.
// The outward vector is sufficient to determine the direction of the arc.
const Real dist = std::abs(height);
const int orient = (height >= 0) ? 1 : -1;
Point MidPoint;
Expand Down

0 comments on commit 40f1a47

Please sign in to comment.