|
Spec-Zone .ru
спецификации, руководства, описания, API
|
public class GaussianBlur extends Effect
import javafx.scene.*;
import javafx.scene.text.*;
import javafx.scene.paint.*;
import javafx.scene.effect.*;
Text t = new Text();
t.setX(10.0);
t.setY(40.0);
t.setCache(true);
t.setText("Blurry Text");
t.setFill(Color.RED);
t.setFont(Font.font(null, FontWeight.BOLD, 36));
t.setEffect(new GaussianBlur());
| Type | Property and Description |
|---|---|
ObjectProperty<Effect> |
input
The input for this
Effect. |
DoubleProperty |
radius
The radius of the blur kernel.
|
| Constructor and Description |
|---|
GaussianBlur() |
| Modifier and Type | Method and Description |
|---|---|
Effect |
getInput()
The input for this
Effect. |
double |
getRadius()
The radius of the blur kernel.
|
ObjectProperty<Effect> |
inputProperty()
The input for this
Effect. |
DoubleProperty |
radiusProperty()
The radius of the blur kernel.
|
void |
setInput(Effect value)
The input for this
Effect. |
void |
setRadius(double value)
The radius of the blur kernel.
|
Effect.
If set to null, or left unspecified, a graphical image of
the Node to which the Effect is attached will be
used as the input.getInput(),
setInput(Effect)
Min: 0.0
Max: 63.0
Default: 10.0
Identity: 0.0
getRadius(),
setRadius(double)public final void setInput(Effect value)
Effect.
If set to null, or left unspecified, a graphical image of
the Node to which the Effect is attached will be
used as the input.public final Effect getInput()
Effect.
If set to null, or left unspecified, a graphical image of
the Node to which the Effect is attached will be
used as the input.public final ObjectProperty<Effect> inputProperty()
Effect.
If set to null, or left unspecified, a graphical image of
the Node to which the Effect is attached will be
used as the input.getInput(),
setInput(Effect)public final void setRadius(double value)
Min: 0.0
Max: 63.0
Default: 10.0
Identity: 0.0
public final double getRadius()
Min: 0.0
Max: 63.0
Default: 10.0
Identity: 0.0
public final DoubleProperty radiusProperty()
Min: 0.0
Max: 63.0
Default: 10.0
Identity: 0.0
getRadius(),
setRadius(double)Copyright (c) 2008, 2011, Oracle and/or its affiliates. All rights reserved. Use is subject to .