Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
VTK Examples
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
VTK
VTK Examples
Commits
ed068e3c
Commit
ed068e3c
authored
6 years ago
by
Bharatesh Chakravarthi S B
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Create CameraActor.java
parent
263f2d4b
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
src/Java/Visualization/CameraActor.java
+103
-0
103 additions, 0 deletions
src/Java/Visualization/CameraActor.java
with
103 additions
and
0 deletions
src/Java/Visualization/CameraActor.java
0 → 100644
+
103
−
0
View file @
ed068e3c
import
vtk.vtkActor
;
import
vtk.vtkSphereSource
;
import
vtk.vtkNativeLibrary
;
import
vtk.vtkPolyDataMapper
;
import
vtk.vtkCamera
;
import
vtk.vtkCameraActor
;
import
vtk.vtkRenderWindow
;
import
vtk.vtkNamedColors
;
import
vtk.vtkRenderer
;
import
vtk.vtkRenderWindowInteractor
;
public
class
CameraActor
{
// -----------------------------------------------------------------
// Load VTK library and print which library was not properly loaded
static
{
if
(!
vtkNativeLibrary
.
LoadAllNativeLibraries
())
{
for
(
vtkNativeLibrary
lib
:
vtkNativeLibrary
.
values
())
{
if
(!
lib
.
IsLoaded
())
{
System
.
out
.
println
(
lib
.
GetLibraryName
()
+
" not loaded"
);
}
}
}
vtkNativeLibrary
.
DisableOutputWindow
(
null
);
}
// -----------------------------------------------------------------
public
static
void
main
(
String
args
[])
{
vtkNamedColors
colors
=
new
vtkNamedColors
();
//For Actor Color
double
actorColor
[]
=
new
double
[
4
];
//For Camera Actor Color
double
CamActorColor
[]
=
new
double
[
4
];
//Renderer Background Color
double
Bgcolor
[]
=
new
double
[
4
];
colors
.
GetColor
(
"DeepSkyBlue"
,
actorColor
);
colors
.
GetColor
(
"Black"
,
CamActorColor
);
colors
.
GetColor
(
"Coral"
,
Bgcolor
);
//Create a Sphere
vtkSphereSource
Sphere
=
new
vtkSphereSource
();
Sphere
.
SetRadius
(
4
);
Sphere
.
Update
();
//Create a Mapper and Actor
vtkPolyDataMapper
Mapper
=
new
vtkPolyDataMapper
();
Mapper
.
SetInputConnection
(
Sphere
.
GetOutputPort
());
vtkActor
Actor
=
new
vtkActor
();
Actor
.
SetMapper
(
Mapper
);
Actor
.
GetProperty
().
SetColor
(
actorColor
);
//Setting up Camera
vtkCamera
Camera
=
new
vtkCamera
();
//Camera Actor
vtkCameraActor
CameraActor
=
new
vtkCameraActor
();
CameraActor
.
SetCamera
(
Camera
);
CameraActor
.
GetProperty
().
SetColor
(
CamActorColor
);
double
bounds
[]
=
new
double
[
6
];
CameraActor
.
GetBounds
(
bounds
);
// Create the renderer, render window and interactor.
vtkRenderer
ren
=
new
vtkRenderer
();
vtkRenderWindow
renWin
=
new
vtkRenderWindow
();
renWin
.
AddRenderer
(
ren
);
vtkRenderWindowInteractor
iren
=
new
vtkRenderWindowInteractor
();
iren
.
SetRenderWindow
(
renWin
);
// Visualize the Camera Actor
ren
.
AddActor
(
Actor
);
ren
.
ResetCamera
();
Camera
.
DeepCopy
(
ren
.
GetActiveCamera
());
ren
.
AddActor
(
CameraActor
);
//Setting up Camera
//ren.GetActiveCamera().SetPosition(0, 0, 1);
//ren.GetActiveCamera().SetFocalPoint(0, 0, 0);
ren
.
GetActiveCamera
().
SetViewUp
(
1
,
0
,
0
);
ren
.
GetActiveCamera
().
Azimuth
(
130
);
ren
.
GetActiveCamera
().
Elevation
(
130
);
//ren.GetActiveCamera().Zoom(1);
//Setting up the Renderer Background Color.
ren
.
SetBackground
(
Bgcolor
);
renWin
.
SetSize
(
300
,
300
);
renWin
.
Render
();
iren
.
Initialize
();
iren
.
Start
();
}
}
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