Uses of Class
javafx.scene.SceneAntialiasing
Packages that use SceneAntialiasing
Package
Description
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 SceneAntialiasingModifier and TypeFieldDescriptionstatic 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 SceneAntialiasingModifier and TypeMethodDescriptionScene.getAntiAliasing()
Return the definedSceneAntialiasing
for thisScene
.SubScene.getAntiAliasing()
Return the definedSceneAntialiasing
for thisSubScene
.Constructors in javafx.scene with parameters of type SceneAntialiasingModifierConstructorDescriptionScene(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.