SceneAntialiasing (Java SE 10 & JDK 10 ) (original) (raw)
- javafx.scene.SceneAntialiasing
public final class SceneAntialiasing
extends Object
The JavaFX SceneAntialiasing
class specifies the level of anti-aliasing desired. Scene anti-aliasing is primarily used when rendering 3D primitives, which are otherwise rendered aliased.SceneAntialiasing
is unrelated toShape.setSmooth. UnlikeShape.setSmooth, SceneAntialiasing
affects the smoothness of the entire rendered scene whereasShape.setSmooth is a rendering hint that applies to an individual 2D Shape.
Note: In order for SceneAntialiasing
to have an affect, the underlying system must support:ConditionalFeature.SCENE3D and anti-aliasing.
Since:
JavaFX 8.0
Field Summary
Fields
Modifier and Type Field Description static SceneAntialiasing BALANCED Enables anti-aliasing optimizing for a balance of quality and performance static SceneAntialiasing DISABLED Disables anti-aliasing Method Summary
* ### Methods declared in class java.lang.[Object](../../java/lang/Object.html "class in java.lang") `[clone](../../java/lang/Object.html#clone%28%29), [equals](../../java/lang/Object.html#equals%28java.lang.Object%29), [finalize](../../java/lang/Object.html#finalize%28%29), [getClass](../../java/lang/Object.html#getClass%28%29), [hashCode](../../java/lang/Object.html#hashCode%28%29), [notify](../../java/lang/Object.html#notify%28%29), [notifyAll](../../java/lang/Object.html#notifyAll%28%29), [toString](../../java/lang/Object.html#toString%28%29), [wait](../../java/lang/Object.html#wait%28%29), [wait](../../java/lang/Object.html#wait%28long%29), [wait](../../java/lang/Object.html#wait%28long,int%29)`
Field Detail
* #### DISABLED public static final [SceneAntialiasing](../../javafx/scene/SceneAntialiasing.html "class in javafx.scene") DISABLED Disables anti-aliasing * #### BALANCED public static final [SceneAntialiasing](../../javafx/scene/SceneAntialiasing.html "class in javafx.scene") BALANCED Enables anti-aliasing optimizing for a balance of quality and performance
Report a bug or suggest an enhancement
For further API reference and developer documentation see the Java SE Documentation, which contains more detailed, developer-targeted descriptions with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java is a trademark or registered trademark of Oracle and/or its affiliates in the US and other countries.
Copyright © 1993, 2018, Oracle and/or its affiliates, 500 Oracle Parkway, Redwood Shores, CA 94065 USA.
All rights reserved. Use is subject to license terms and the documentation redistribution policy.