Skip to content
Snippets Groups Projects
Commit 8f7272ba authored by Markus Holzer's avatar Markus Holzer
Browse files

Merge branch 'directionFromAxis' into 'master'

Fix documentation of directionFromAxis

See merge request walberla/walberla!471
parents 51045907 d3946d1b
No related merge requests found
......@@ -271,8 +271,8 @@ namespace stencil {
/// Maps (direction,axis) pair to direction
/// \param axis 0,1 or 2 standing for x,y,z
/// \param minOrMax if false, the direction pointing in the negative axis direction is returned,
/// if true, the positive axis direction
/// \param minOrMax if true, the direction pointing in the negative axis direction is returned,
/// if false, the positive axis direction
inline Direction directionFromAxis( int axis, bool minOrMax )
{
WALBERLA_ASSERT_LESS( axis, 3 );
......@@ -288,8 +288,8 @@ namespace stencil {
/// Maps (direction,axis) pair to direction
/// \param axis 0,1 or 2 standing for x,y,z
/// \param minOrMax if false, the direction pointing in the negative axis direction is returned,
/// if true, the positive axis direction
/// \param minOrMax if true, the direction pointing in the negative axis direction is returned,
/// if false, the positive axis direction
inline Direction directionFromAxis( uint_t axis, bool minOrMax )
{
WALBERLA_ASSERT_LESS( axis, 3 );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment