Uses of Class
javafx.scene.SceneAntialiasing
Package | Description |
---|---|
javafx.scene |
Provides the core set of base
classes for the JavaFX Scene Graph API.
|
-
Uses of SceneAntialiasing in javafx.scene
Fields in javafx.scene declared as SceneAntialiasing Modifier and Type Field Description static SceneAntialiasing
SceneAntialiasing. BALANCED
Enables anti-aliasing optimizing for a balance of quality and performancestatic SceneAntialiasing
SceneAntialiasing. DISABLED
Disables anti-aliasingMethods in javafx.scene that return SceneAntialiasing Modifier and Type Method Description SceneAntialiasing
Scene. getAntiAliasing()
Return the definedSceneAntialiasing
for thisScene
.SceneAntialiasing
SubScene. getAntiAliasing()
Return the definedSceneAntialiasing
for thisSubScene
.Constructors in javafx.scene with parameters of type SceneAntialiasing Constructor 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 aSubScene
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.