GIT: Initial commit after latest foundation merge

This commit is contained in:
andy
2016-04-25 11:40:48 +01:00
4003 changed files with 74634 additions and 37783 deletions

View File

@ -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)
{}