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
Andrew Bauer
VTK
Commits
f57ea39e
Commit
f57ea39e
authored
Nov 14, 1995
by
Ken Martin
Browse files
fixed a goober variable shadow
parent
0b1d5d07
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/vtkQuadric.cc
View file @
f57ea39e
...
...
@@ -71,7 +71,7 @@ void vtkQuadric::SetCoefficients(float a[10])
if
(
i
<
10
)
{
this
->
Modified
();
for
(
int
i
=
0
;
i
<
10
;
i
++
)
c
[
i
]
=
a
[
i
];
for
(
i
=
0
;
i
<
10
;
i
++
)
c
[
i
]
=
a
[
i
];
}
}
...
...
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