Basics
Guides
API Reference
Basics
Guides
API Reference
[11:7] extends: FxObj
Wraps JavaFX GaussianBlur, an effect that blurs a node using a true Gaussian convolution kernel. The radius property controls the standard deviation of the kernel; values range from 0 (no blur) to 63. Apply it to any node via the node's setEffect() method.
GaussianBlur ()
Creates a new GaussianBlur effect with default settings.
setRadius (double R)
Sets the radius (standard deviation) of the Gaussian blur kernel.
R is a double in the range 0 to 63; larger values produce stronger blur.this objectgetRadius ()
Returns the current radius of the blur kernel.
A double with the radius.radiusProperty ()
Returns the DoubleProperty backing the radius value.
An AJO wrapping javafx.beans.property.DoubleProperty.setInput (object Input)
Sets the input effect that this GaussianBlur is chained to. When null the effect operates on the node directly.
Input is an Effect wrapper (e.g. Bloom, BoxBlur, etc.) or null.this objectgetInput ()
Returns the input effect chained to this GaussianBlur.
An AJO wrapping javafx.scene.effect.Effect, or null if none is set.inputProperty ()
Returns the ObjectProperty backing the input effect reference.
An AJO wrapping javafx.beans.property.ObjectProperty
Aussom
Write once. Embed everywhere.
Copyright 2026 Austin Lehman. All rights reserved.