/* * Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. * * * * * * * * * * * * * * * * * * * * */ package javafx.scene.effect; import javafx.beans.property.DoubleProperty; import javafx.beans.property.DoublePropertyBase; import javafx.beans.property.ObjectProperty; import javafx.scene.Node; import com.sun.javafx.util.Utils; import com.sun.javafx.effect.EffectDirtyBits; import com.sun.javafx.geom.BaseBounds; import com.sun.javafx.geom.transform.BaseTransform; import com.sun.javafx.scene.BoundsAccessor; /** * A motion blur effect using a Gaussian convolution kernel, with a * configurable radius and angle. * *
* Example: *
* MotionBlur motionBlur = new MotionBlur();
* motionBlur.setRadius(30);
* motionBlur.setAngle(-15.0);
*
* Text text = new Text();
* text.setX(20.0);
* text.setY(100.0);
* text.setText("Motion!");
* text.setFill(Color.web("0x3b596d"));
* text.setFont(Font.font(null, FontWeight.BOLD, 60));
* text.setEffect(motionBlur);
*
* * The code above produces the following: *
*
*
*
* Min: 0.0 * Max: 63.0 * Default: 10.0 * Identity: 0.0 ** @defaultValue 10.0 */ private DoubleProperty radius; public final void setRadius(double value) { radiusProperty().set(value); } public final double getRadius() { return radius == null ? 10 : radius.get(); } public final DoubleProperty radiusProperty() { if (radius == null) { radius = new DoublePropertyBase(10) { @Override public void invalidated() { markDirty(EffectDirtyBits.EFFECT_DIRTY); effectBoundsChanged(); } @Override public Object getBean() { return MotionBlur.this; } @Override public String getName() { return "radius"; } }; } return radius; } /** * The angle of the motion effect, in degrees. *
* Min: n/a * Max: n/a * Default: 0.0 * Identity: n/a ** @defaultValue 0.0 */ private DoubleProperty angle; public final void setAngle(double value) { angleProperty().set(value); } public final double getAngle() { return angle == null ? 0 : angle.get(); } public final DoubleProperty angleProperty() { if (angle == null) { angle = new DoublePropertyBase() { @Override public void invalidated() { markDirty(EffectDirtyBits.EFFECT_DIRTY); effectBoundsChanged(); } @Override public Object getBean() { return MotionBlur.this; } @Override public String getName() { return "angle"; } }; } return angle; } private float getClampedRadius() { return (float)Utils.clamp(0, getRadius(), 63); } @Override void impl_update() { Effect localInput = getInput(); if (localInput != null) { localInput.impl_sync(); } com.sun.scenario.effect.MotionBlur peer = (com.sun.scenario.effect.MotionBlur) impl_getImpl(); peer.setInput(localInput == null ? null : localInput.impl_getImpl()); peer.setRadius(getClampedRadius()); peer.setAngle((float)Math.toRadians(getAngle())); } private int getHPad() { return (int) Math.ceil(Math.abs(Math.cos(Math.toRadians(getAngle()))) * getClampedRadius()); } private int getVPad() { return (int) Math.ceil(Math.abs(Math.sin(Math.toRadians(getAngle()))) * getClampedRadius()); } /** * @treatAsPrivate implementation detail * @deprecated This is an internal API that is not intended for use and will be removed in the next version */ @Deprecated @Override public BaseBounds impl_getBounds(BaseBounds bounds, BaseTransform tx, Node node, BoundsAccessor boundsAccessor) { bounds = getInputBounds(bounds, BaseTransform.IDENTITY_TRANSFORM, node, boundsAccessor, getInput()); int hpad = getHPad(); int vpad = getVPad(); bounds = bounds.deriveWithPadding(hpad, vpad, 0); return transformBounds(tx, bounds); } /** * @treatAsPrivate implementation detail * @deprecated This is an internal API that is not intended for use and will be removed in the next version */ @Deprecated @Override public Effect impl_copy() { MotionBlur mb = new MotionBlur(this.getAngle(), this.getRadius()); mb.setInput(mb.getInput()); return mb; } }