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
1f90b5dc
Commit
1f90b5dc
authored
Nov 16, 2011
by
Philippe Pébay
Browse files
Removed debug statements
Change-Id: I25273196720346d2bceda8be3987d7f0cc7d993b
parent
6080f5ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
Graphics/vtkArcSource.cxx
View file @
1f90b5dc
...
@@ -124,7 +124,6 @@ int vtkArcSource::RequestData(
...
@@ -124,7 +124,6 @@ int vtkArcSource::RequestData(
{
this
->
Center
[
0
]
+
cosine
*
radius
*
v1
[
0
]
+
sine
*
radius
*
perpendicular
[
0
],
{
this
->
Center
[
0
]
+
cosine
*
radius
*
v1
[
0
]
+
sine
*
radius
*
perpendicular
[
0
],
this
->
Center
[
1
]
+
cosine
*
radius
*
v1
[
1
]
+
sine
*
radius
*
perpendicular
[
1
],
this
->
Center
[
1
]
+
cosine
*
radius
*
v1
[
1
]
+
sine
*
radius
*
perpendicular
[
1
],
this
->
Center
[
2
]
+
cosine
*
radius
*
v1
[
2
]
+
sine
*
radius
*
perpendicular
[
2
]
};
this
->
Center
[
2
]
+
cosine
*
radius
*
v1
[
2
]
+
sine
*
radius
*
perpendicular
[
2
]
};
cerr
<<
p
[
0
]
<<
" "
<<
p
[
1
]
<<
" "
<<
p
[
2
]
<<
endl
;
tc
[
0
]
=
static_cast
<
double
>
(
i
)
/
this
->
Resolution
;
tc
[
0
]
=
static_cast
<
double
>
(
i
)
/
this
->
Resolution
;
newPoints
->
InsertPoint
(
i
,
p
);
newPoints
->
InsertPoint
(
i
,
p
);
...
...
Hybrid/vtkPolarAxesActor.cxx
View file @
1f90b5dc
...
@@ -777,8 +777,6 @@ void vtkPolarAxesActor::BuildPolarAxisLabelsArcs( double* O,
...
@@ -777,8 +777,6 @@ void vtkPolarAxesActor::BuildPolarAxisLabelsArcs( double* O,
vtkPoints
*
arcPoints
=
arc
->
GetOutput
()
->
GetPoints
();
vtkPoints
*
arcPoints
=
arc
->
GetOutput
()
->
GetPoints
();
vtkIdType
nPoints
=
arcResolution
+
1
;
vtkIdType
nPoints
=
arcResolution
+
1
;
vtkIdType
*
arcPointIds
=
new
vtkIdType
[
nPoints
];
vtkIdType
*
arcPointIds
=
new
vtkIdType
[
nPoints
];
double
*
pt
;
cerr
<<
"val = "
<<
val
<<
endl
;
for
(
vtkIdType
j
=
0
;
j
<
nPoints
;
++
j
)
for
(
vtkIdType
j
=
0
;
j
<
nPoints
;
++
j
)
{
{
polarArcsPoints
->
InsertNextPoint
(
arcPoints
->
GetPoint
(
j
)
);
polarArcsPoints
->
InsertNextPoint
(
arcPoints
->
GetPoint
(
j
)
);
...
...
Write
Preview
Markdown
is supported
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