mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
@ -33,8 +33,8 @@ localCode
|
||||
const pointField& points
|
||||
)
|
||||
{
|
||||
tmp<pointField> tnewPoints(new pointField(points));
|
||||
pointField& newPoints = tnewPoints.ref();
|
||||
auto tnewPoints = tmp<pointField>::New(points);
|
||||
auto& newPoints = tnewPoints.ref();
|
||||
|
||||
const boundBox bb(points, true);
|
||||
const scalar zMin = bb.min()[vector::Z];
|
||||
|
||||
Reference in New Issue
Block a user