Skip to content
GitLab
Menu
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
6b2f5934
Commit
6b2f5934
authored
Mar 22, 2016
by
Adam Updegrove
Committed by
Cory Quammen
Jul 06, 2016
Browse files
Braces indented and underscores in header removed
parent
b09f1173
Changes
2
Hide whitespace changes
Inline
Side-by-side
Filters/General/vtkIntersectionPolyDataFilter.cxx
View file @
6b2f5934
...
...
@@ -209,13 +209,13 @@ vtkIntersectionPolyDataFilter::Impl::Impl() :
OBBTree1
(
0
),
IntersectionLines
(
0
),
SurfaceId
(
0
),
PointMerger
(
0
)
{
for
(
int
i
=
0
;
i
<
2
;
i
++
)
{
{
this
->
Mesh
[
i
]
=
NULL
;
this
->
CellIds
[
i
]
=
NULL
;
this
->
IntersectionMap
[
i
]
=
new
IntersectionMapType
();
this
->
IntersectionPtsMap
[
i
]
=
new
IntersectionMapType
();
this
->
PointEdgeMap
[
i
]
=
new
PointEdgeMapType
();
}
}
this
->
PointMapper
=
new
IntersectionMapType
();
this
->
SplittingPD
=
vtkPolyData
::
New
();
this
->
TransformSign
=
0
;
...
...
@@ -226,11 +226,11 @@ vtkIntersectionPolyDataFilter::Impl::Impl() :
vtkIntersectionPolyDataFilter
::
Impl
::~
Impl
()
{
for
(
int
i
=
0
;
i
<
2
;
i
++
)
{
{
delete
this
->
IntersectionMap
[
i
];
delete
this
->
IntersectionPtsMap
[
i
];
delete
this
->
PointEdgeMap
[
i
];
}
}
delete
this
->
PointMapper
;
this
->
SplittingPD
->
Delete
();
}
...
...
Filters/General/vtkIntersectionPolyDataFilter.h
View file @
6b2f5934
...
...
@@ -172,4 +172,4 @@ private:
};
#endif //
__
vtkIntersectionPolyDataFilter_h
#endif // vtkIntersectionPolyDataFilter_h
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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