cyclicTransform: Added null constructor to permit storage in a list
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Copyright (C) 2020-2021 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -189,6 +189,12 @@ bool Foam::cyclicTransform::set
|
||||
|
||||
// * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * //
|
||||
|
||||
Foam::cyclicTransform::cyclicTransform()
|
||||
:
|
||||
cyclicTransform(true)
|
||||
{}
|
||||
|
||||
|
||||
Foam::cyclicTransform::cyclicTransform
|
||||
(
|
||||
const bool defaultIsNone
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration | Website: https://openfoam.org
|
||||
\\ / A nd | Copyright (C) 2020 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2020-2022 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -114,6 +114,9 @@ public:
|
||||
|
||||
// Constructors
|
||||
|
||||
// Transformation set NONE
|
||||
cyclicTransform();
|
||||
|
||||
// Transformation set as UNSPECIFIED or NONE
|
||||
cyclicTransform(const bool defaultIsNone);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user