mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
conformalVoronoiMesh: update for clang complication
This commit is contained in:
@ -219,8 +219,10 @@ Foam::tmp<Foam::triSurfacePointScalarField> Foam::automatic::load()
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
scalarField internalClosenessPointField =
|
scalarField internalClosenessPointField
|
||||||
patchInterpolate.faceToPointInterpolate(internalCloseness);
|
(
|
||||||
|
patchInterpolate.faceToPointInterpolate(internalCloseness)
|
||||||
|
);
|
||||||
|
|
||||||
forAll(pointCellSize, pI)
|
forAll(pointCellSize, pI)
|
||||||
{
|
{
|
||||||
@ -254,8 +256,10 @@ Foam::tmp<Foam::triSurfacePointScalarField> Foam::automatic::load()
|
|||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
scalarField featureProximityPointField =
|
scalarField featureProximityPointField
|
||||||
patchInterpolate.faceToPointInterpolate(featureProximity);
|
(
|
||||||
|
patchInterpolate.faceToPointInterpolate(featureProximity)
|
||||||
|
);
|
||||||
|
|
||||||
forAll(pointCellSize, pI)
|
forAll(pointCellSize, pI)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -80,7 +80,8 @@ Foam::searchableBoxFeatures::features() const
|
|||||||
{
|
{
|
||||||
autoPtr<extendedFeatureEdgeMesh> features;
|
autoPtr<extendedFeatureEdgeMesh> features;
|
||||||
|
|
||||||
vectorField faceNormals(List<vector>(treeBoundBox::faceNormals));
|
List<vector> faceNormalsList(treeBoundBox::faceNormals);
|
||||||
|
vectorField faceNormals(faceNormalsList);
|
||||||
|
|
||||||
vectorField edgeDirections(12);
|
vectorField edgeDirections(12);
|
||||||
labelListList normalDirections(12);
|
labelListList normalDirections(12);
|
||||||
|
|||||||
Reference in New Issue
Block a user