Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openfoam
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Development
openfoam
Commits
fffde6ed
Commit
fffde6ed
authored
15 years ago
by
mattijs
Browse files
Options
Downloads
Patches
Plain Diff
explicit constructors
parent
6ae8581d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/meshTools/octree/octreeDataPoint.H
+1
-1
1 addition, 1 deletion
src/meshTools/octree/octreeDataPoint.H
src/meshTools/octree/treeBoundBox.H
+2
-2
2 additions, 2 deletions
src/meshTools/octree/treeBoundBox.H
with
3 additions
and
3 deletions
src/meshTools/octree/octreeDataPoint.H
+
1
−
1
View file @
fffde6ed
...
...
@@ -69,7 +69,7 @@ public:
// Constructors
//- Construct from components. Holds reference to points!
octreeDataPoint
(
const
pointField
&
);
explicit
octreeDataPoint
(
const
pointField
&
);
// Member Functions
...
...
This diff is collapsed.
Click to expand it.
src/meshTools/octree/treeBoundBox.H
+
2
−
2
View file @
fffde6ed
...
...
@@ -170,11 +170,11 @@ public:
inline
treeBoundBox
(
const
point
&
min
,
const
point
&
max
);
//- Construct from components
inline
treeBoundBox
(
const
boundBox
&
bb
);
explicit
inline
treeBoundBox
(
const
boundBox
&
bb
);
//- Construct as the bounding box of the given pointField.
// Local processor domain only (no reduce as in boundBox)
treeBoundBox
(
const
UList
<
point
>&
);
explicit
treeBoundBox
(
const
UList
<
point
>&
);
//- Construct as subset of points
// Local processor domain only (no reduce as in boundBox)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment