mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
GIT: Initial commit after latest foundation merge
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
|
||||
\\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd.
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -134,7 +134,7 @@ void Foam::edgeIntersections::intersectEdges
|
||||
edgeDirs[i] = n;
|
||||
}
|
||||
|
||||
List<List<pointIndexHit> > edgeIntersections;
|
||||
List<List<pointIndexHit>> edgeIntersections;
|
||||
querySurf2.findLineAll
|
||||
(
|
||||
start,
|
||||
@ -445,7 +445,7 @@ bool Foam::edgeIntersections::offsetPerturb
|
||||
// Construct null
|
||||
Foam::edgeIntersections::edgeIntersections()
|
||||
:
|
||||
List<List<pointIndexHit> >(),
|
||||
List<List<pointIndexHit>>(),
|
||||
classification_()
|
||||
{}
|
||||
|
||||
@ -457,7 +457,7 @@ Foam::edgeIntersections::edgeIntersections
|
||||
const scalarField& surf1PointTol
|
||||
)
|
||||
:
|
||||
List<List<pointIndexHit> >(surf1.nEdges()),
|
||||
List<List<pointIndexHit>>(surf1.nEdges()),
|
||||
classification_(surf1.nEdges())
|
||||
{
|
||||
checkEdges(surf1);
|
||||
@ -480,11 +480,11 @@ Foam::edgeIntersections::edgeIntersections
|
||||
// Construct from components
|
||||
Foam::edgeIntersections::edgeIntersections
|
||||
(
|
||||
const List<List<pointIndexHit> >& intersections,
|
||||
const List<List<pointIndexHit>>& intersections,
|
||||
const labelListList& classification
|
||||
)
|
||||
:
|
||||
List<List<pointIndexHit> >(intersections),
|
||||
List<List<pointIndexHit>>(intersections),
|
||||
classification_(classification)
|
||||
{}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user