BridgeContext ctx) {
try {
// motion animation
AffineTransform at = new AffineTransform();
if (e instanceof SVGMotionAnimatableElement) {
SVGMotionAnimatableElement mae = (SVGMotionAnimatableElement) e;
AffineTransform mat = mae.getMotionTransform();
if (mat != null) {
at.concatenate(mat);
}
}