Effect (Java SE 10 & JDK 10 ) (original) (raw)
- javafx.scene.effect.Effect
Direct Known Subclasses:
[Blend](../../../javafx/scene/effect/Blend.html "class in javafx.scene.effect")
,[Bloom](../../../javafx/scene/effect/Bloom.html "class in javafx.scene.effect")
,[BoxBlur](../../../javafx/scene/effect/BoxBlur.html "class in javafx.scene.effect")
,[ColorAdjust](../../../javafx/scene/effect/ColorAdjust.html "class in javafx.scene.effect")
,[ColorInput](../../../javafx/scene/effect/ColorInput.html "class in javafx.scene.effect")
,[DisplacementMap](../../../javafx/scene/effect/DisplacementMap.html "class in javafx.scene.effect")
,[DropShadow](../../../javafx/scene/effect/DropShadow.html "class in javafx.scene.effect")
,[GaussianBlur](../../../javafx/scene/effect/GaussianBlur.html "class in javafx.scene.effect")
,[Glow](../../../javafx/scene/effect/Glow.html "class in javafx.scene.effect")
,[ImageInput](../../../javafx/scene/effect/ImageInput.html "class in javafx.scene.effect")
,[InnerShadow](../../../javafx/scene/effect/InnerShadow.html "class in javafx.scene.effect")
,[Lighting](../../../javafx/scene/effect/Lighting.html "class in javafx.scene.effect")
,[MotionBlur](../../../javafx/scene/effect/MotionBlur.html "class in javafx.scene.effect")
,[PerspectiveTransform](../../../javafx/scene/effect/PerspectiveTransform.html "class in javafx.scene.effect")
,[Reflection](../../../javafx/scene/effect/Reflection.html "class in javafx.scene.effect")
,[SepiaTone](../../../javafx/scene/effect/SepiaTone.html "class in javafx.scene.effect")
,[Shadow](../../../javafx/scene/effect/Shadow.html "class in javafx.scene.effect")
public abstract class Effect
extends Object
The abstract base class for all effect implementations. An effect is a graphical algorithm that produces an image, typically as a modification of a source image. An effect can be associated with a scene graph Node
by setting the Node.effect attribute. Some effects change the color properties of the source pixels (such as ColorAdjust), others combine multiple images together (such as Blend), while still others warp or move the pixels of the source image around (such as DisplacementMap or PerspectiveTransform). All effects have at least one input defined and the input can be set to another effect to chain the effects together and combine their results, or it can be left unspecified in which case the effect will operate on a graphical rendering of the node it is attached to.
Note: this is a conditional feature. SeeConditionalFeature.EFFECT for more information.
Since:
JavaFX 2.0
Constructor Summary
Constructors
Modifier Constructor Description protected Effect() Creates a new Effect. 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)`
Constructor Detail
* #### Effect protected Effect() Creates a new Effect.
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.