MotionBlur
Returns a pixmap with a motion blur effect.
Syntax
-
MotionBlur(pm[, amt[, d]])
-
pm
is a pixmap -
amt
is a non-negative integer -
d
is one of"v"
or"h"
-
Description
MotionBlur(pm, amt, d)
returns pm
with a motion blur effect, vertical if d = "v"
and horizontal if d = "h"
. If omitted, d
defaults to "h"
. amt
is the amount, which defaults to 32
.
Examples
pm ≔ ExampleData("harvestman")
MotionBlur(pm)
MotionBlur(pm, 70)