Package | Description |
---|---|
com.sun.javafx.scene | |
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
Modifier and Type | Method and Description |
---|---|
static Camera |
SceneHelper.getEffectiveCamera(Scene scene) |
Camera |
SceneHelper.SceneAccessor.getEffectiveCamera(Scene scene) |
static Camera |
SubSceneHelper.getEffectiveCamera(SubScene subScene) |
Camera |
SubSceneHelper.SubSceneAccessor.getEffectiveCamera(SubScene subScene) |
Modifier and Type | Method and Description |
---|---|
static Point2D |
CameraHelper.pickNodeXYPlane(Camera camera,
Node node,
double x,
double y) |
Point2D |
CameraHelper.CameraAccessor.pickNodeXYPlane(Camera camera,
Node node,
double x,
double y) |
static Point3D |
CameraHelper.pickProjectPlane(Camera camera,
double x,
double y) |
Point3D |
CameraHelper.CameraAccessor.pickProjectPlane(Camera camera,
double x,
double y) |
static Point2D |
CameraHelper.project(Camera camera,
Point3D p) |
Point2D |
CameraHelper.CameraAccessor.project(Camera camera,
Point3D p) |
Modifier and Type | Class and Description |
---|---|
class |
ParallelCamera
Specifies a parallel camera for rendering a scene without perspective correction.
|
class |
PerspectiveCamera
Specifies a perspective camera for rendering a scene.
|
Modifier and Type | Method and Description |
---|---|
Camera |
SubScene.getCamera() |
Camera |
SnapshotParameters.getCamera()
Gets the current camera.
|
Camera |
Scene.getCamera() |
Modifier and Type | Method and Description |
---|---|
ObjectProperty<Camera> |
SubScene.cameraProperty() |
ObjectProperty<Camera> |
Scene.cameraProperty() |
Modifier and Type | Method and Description |
---|---|
B |
SnapshotParametersBuilder.camera(Camera x)
Deprecated.
Set the value of the
camera property for the instance constructed by this builder. |
B |
SceneBuilder.camera(Camera x)
Deprecated.
Set the value of the
camera property for the instance constructed by this builder. |
void |
SubScene.setCamera(Camera value) |
void |
SnapshotParameters.setCamera(Camera camera)
Sets the camera to the specified value.
|
void |
Scene.setCamera(Camera value) |
Copyright © 2020. All rights reserved.