mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
BUG: extendedFeatureEdgeMesh feature point tree was not initialised correctly
This commit is contained in:
@ -853,13 +853,17 @@ Foam::extendedFeatureEdgeMesh::pointTree() const
|
||||
bb.min() -= point(ROOTVSMALL, ROOTVSMALL, ROOTVSMALL);
|
||||
bb.max() += point(ROOTVSMALL, ROOTVSMALL, ROOTVSMALL);
|
||||
|
||||
labelList allPoints(identity(points().size()));
|
||||
const labelList featurePointLabels = identity(nonFeatureStart_);
|
||||
|
||||
pointTree_.reset
|
||||
(
|
||||
new indexedOctree<treeDataPoint>
|
||||
(
|
||||
treeDataPoint(points()),
|
||||
treeDataPoint
|
||||
(
|
||||
points(),
|
||||
featurePointLabels
|
||||
),
|
||||
bb, // bb
|
||||
8, // maxLevel
|
||||
10, // leafsize
|
||||
|
||||
Reference in New Issue
Block a user