MotionBlur
Returns a pixmap with a motion blur effect.
Syntax
-
MotionBlur(pm[, amt[, d]])-
pmis a pixmap -
amtis a non-negative integer -
dis 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)
