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
afaddec5
Commit
afaddec5
authored
Oct 04, 2011
by
Jon Woodring
Browse files
One more shadowed variable warning.
Change-Id: I07822a3ab31b70565961463e1dc3038edcd2b488
parent
7736b777
Changes
1
Hide whitespace changes
Inline
Side-by-side
Parallel/vtkWindBladeReader.cxx
View file @
afaddec5
...
...
@@ -2081,11 +2081,11 @@ void vtkWindBladeReader::LoadBladeData(int timeStep)
}
// Add the towers to the geometry
for
(
int
i
=
0
;
i
<
this
->
NumberOfBladeTowers
;
i
++
)
for
(
int
j
=
0
;
j
<
this
->
NumberOfBladeTowers
;
j
++
)
{
x
=
this
->
XPosition
->
GetValue
(
i
);
y
=
this
->
YPosition
->
GetValue
(
i
);
z
=
this
->
HubHeight
->
GetValue
(
i
);
x
=
this
->
XPosition
->
GetValue
(
j
);
y
=
this
->
YPosition
->
GetValue
(
j
);
z
=
this
->
HubHeight
->
GetValue
(
j
);
this
->
BPoints
->
InsertNextPoint
(
x
-
2
,
y
-
2
,
0.0
);
this
->
BPoints
->
InsertNextPoint
(
x
+
2
,
y
-
2
,
0.0
);
...
...
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