Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Christian Butz
VTK
Commits
1a72b649
Commit
1a72b649
authored
Feb 14, 2012
by
George Zagaris
Browse files
ENH: Remove vtkstd
Change-Id: Iddae500355e86513fd44cd9d670db48a7c28bb97
parent
546dbdcd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Filtering/vtkAMRBox.cxx
View file @
1a72b649
...
...
@@ -19,15 +19,13 @@
#include
"vtkType.h"
#include
"vtkStructuredData.h"
#include
<
vtkstd/
vector>
#include
<
vtkstd/
algorithm>
#include
<vector>
#include
<algorithm>
#include
<cstring>
#include
<cassert>
#include
<sstream>
#include
<fstream>
using
vtkstd
::
vector
;
using
vtkstd
::
copy
;
//-----------------------------------------------------------------------------
...
...
Filtering/vtkAMRBox.h
View file @
1a72b649
...
...
@@ -32,7 +32,7 @@
#include
"vtkObject.h"
#include
"vtkType.h"
//For utility functions.
#include
<
vtkstd/
vector>
// STL Header
#include
<vector>
// STL Header
class
VTK_FILTERING_EXPORT
vtkAMRBox
{
...
...
@@ -485,13 +485,13 @@ void FillRegion(
// Split the boxes passed in N times in the i,j and k directions.
// Once a box is split down to a single cell, or the given minimum side length
// it won't be split anymore, but it will propagate through the operation.
void
Split
(
const
int
N
[
3
],
const
int
minSide
[
3
],
vtk
std
::
vector
<
vtkAMRBox
>
&
decomp
);
void
Split
(
const
int
N
[
3
],
const
int
minSide
[
3
],
std
::
vector
<
vtkAMRBox
>
&
decomp
);
// Description:
// Split the boxes passed in in the i,j and k directions, until splitting
// operation would result boxes with side lengths less than the specified
// minimum or the box is split down to a single cell..
void
Split
(
const
int
minSide
[
3
],
vtk
std
::
vector
<
vtkAMRBox
>
&
decomp
);
void
Split
(
const
int
minSide
[
3
],
std
::
vector
<
vtkAMRBox
>
&
decomp
);
//-----------------------------------------------------------------------------
inline
bool
vtkAMRBox
::
IsInvalid
()
const
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment