mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
rename "bbox" to "boundingBox"
This commit is contained in:
@@ -536,16 +536,16 @@ public:
|
||||
|
||||
private:
|
||||
bool onLeftBoundary_(const GlobalPosition &pos) const
|
||||
{ return pos[0] < this->bboxMin()[0] + eps_; }
|
||||
{ return pos[0] < this->boundingBoxMin()[0] + eps_; }
|
||||
|
||||
bool onRightBoundary_(const GlobalPosition &pos) const
|
||||
{ return pos[0] > this->bboxMax()[0] - eps_; }
|
||||
{ return pos[0] > this->boundingBoxMax()[0] - eps_; }
|
||||
|
||||
bool onLowerBoundary_(const GlobalPosition &pos) const
|
||||
{ return pos[1] < this->bboxMin()[1] + eps_; }
|
||||
{ return pos[1] < this->boundingBoxMin()[1] + eps_; }
|
||||
|
||||
bool onUpperBoundary_(const GlobalPosition &pos) const
|
||||
{ return pos[1] > this->bboxMax()[1] - eps_; }
|
||||
{ return pos[1] > this->boundingBoxMax()[1] - eps_; }
|
||||
|
||||
void computeHeatCondParams_(HeatConductionLawParams ¶ms, Scalar poro)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user