Package | Description |
---|---|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
Modifier and Type | Field and Description |
---|---|
static SceneAntialiasing |
SceneAntialiasing.BALANCED
Enables anti-aliasing optimizing for a balance of quality and performance
|
static SceneAntialiasing |
SceneAntialiasing.DISABLED
Disables anti-aliasing
|
Modifier and Type | Method and Description |
---|---|
SceneAntialiasing |
SubScene.getAntiAliasing()
Return the defined
SceneAntialiasing for this SubScene . |
SceneAntialiasing |
Scene.getAntiAliasing()
Return the defined
SceneAntialiasing for this Scene . |
Constructor and Description |
---|
Scene(Parent root,
double width,
double height,
boolean depthBuffer,
SceneAntialiasing antiAliasing)
Constructs a scene consisting of a root, with a dimension of width and
height, specifies whether a depth buffer is created for this scene and
specifies whether scene anti-aliasing is requested.
|
SubScene(Parent root,
double width,
double height,
boolean depthBuffer,
SceneAntialiasing antiAliasing)
Constructs a
SubScene consisting of a root, with a dimension of width and
height, specifies whether a depth buffer is created for this scene and
specifies whether scene anti-aliasing is requested. |
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 2008, 2019, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.