&rfx_sendmsg (
qq{
(let* ((input-file (string-append "$curtmpdir" DIR-SEPARATOR "$in"))
(image (car (gimp-file-load RUN-NONINTERACTIVE input-file input-file)))
(layer (car (gimp-image-get-active-layer image))) )
(if $p7
(plug-in-mblur RUN-NONINTERACTIVE image layer
(cond
((= $p0 1) 0 )
((= $p1 1) 1 )
((= $p2 1) 2 ) )
$p3 ; length
$p4 ; angle
$p5 ; center x
$p6 ; center y
)
(plug-in-mblur-inward
RUN-NONINTERACTIVE image layer
(cond
((= $p0 1) 0 )
((= $p1 1) 1 )
((= $p2 1) 2 ) )
$p3 ; length
$p4 ; angle
$p5 ; center x
$p6 ; center y
))
(rfx-save-frame image "$out") )
}
);