mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: triad: Do not sort unless all components are set.
This commit is contained in:
@ -282,6 +282,11 @@ void Foam::triad::align(const vector& v)
|
|||||||
|
|
||||||
Foam::triad Foam::triad::sortxyz() const
|
Foam::triad Foam::triad::sortxyz() const
|
||||||
{
|
{
|
||||||
|
if (!this->set())
|
||||||
|
{
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
triad t;
|
triad t;
|
||||||
|
|
||||||
if
|
if
|
||||||
|
|||||||
Reference in New Issue
Block a user