Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Thomas
VTK
Commits
daa75aa7
Commit
daa75aa7
authored
4 years ago
by
Ken Martin
Browse files
Options
Downloads
Patches
Plain Diff
Fix duplicate var definition vtkPanel.java
Fix a duplicate variable in Java
parent
59516203
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Wrapping/Java/vtk/vtkPanel.java
+1
-2
1 addition, 2 deletions
Wrapping/Java/vtk/vtkPanel.java
with
1 addition
and
2 deletions
Wrapping/Java/vtk/vtkPanel.java
+
1
−
2
View file @
daa75aa7
...
...
@@ -24,7 +24,7 @@ import javax.swing.SwingUtilities;
*/
public
class
vtkPanel
extends
Canvas
implements
MouseListener
,
MouseMotionListener
,
MouseWheelListener
,
KeyListener
{
private
static
final
long
serialVersionUID
=
1L
;
protected
vtkRenderWindow
rw
=
new
vtkRenderWindow
();
protected
vtkRenderWindow
rw
=
new
vtk
OpenGL
RenderWindow
();
protected
vtkRenderer
ren
=
new
vtkRenderer
();
protected
vtkCamera
cam
=
null
;
protected
vtkLight
lgt
=
new
vtkLight
();
...
...
@@ -35,7 +35,6 @@ public class vtkPanel extends Canvas implements MouseListener, MouseMotionListen
protected
int
LightFollowCamera
=
1
;
protected
int
InteractionMode
=
1
;
protected
boolean
rendering
=
false
;
protected
vtkRenderWindow
rw
=
new
vtkOpenGLRenderWindow
();
//vtkRenderWindow();
// Allow access to display lock() and unlock().
// Call these whenever you call something that causes
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment