Skip to content

Commit

Permalink
Clang format
Browse files Browse the repository at this point in the history
  • Loading branch information
reverendbedford committed Mar 25, 2024
1 parent ae822db commit 8138ccc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/functions/InterpolateCSVFunction.C
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ InterpolateCSVFunction::validParams()

InterpolateCSVFunction::InterpolateCSVFunction(const InputParameters & parameters)
: Function(parameters),
_transform(RankTwoTensor(getParam<Point>("a1"), getParam<Point>("a2"), getParam<Point>("a3")).transpose().inverse()),
_transform(RankTwoTensor(getParam<Point>("a1"), getParam<Point>("a2"), getParam<Point>("a3"))
.transpose()
.inverse()),
_min(getParam<Real>("min_x"), getParam<Real>("min_y"), getParam<Real>("min_z")),
_max(getParam<Real>("max_x"), getParam<Real>("max_y"), getParam<Real>("max_z")),
_n({getParam<size_t>("n_x"), getParam<size_t>("n_y"), getParam<size_t>("n_z")}),
Expand Down

0 comments on commit 8138ccc

Please sign in to comment.