Народ подскажите, может кто встречал примерчик как сделать анимацию SVG в MasterSCADA 4D.

Чет сижу туплю. Допустим простенький квадрат.

Код HTML:
<svg width="200mm" height="200mm" xmlns="http://www.w3.org/2000/svg"
    xmlns:xlink="http://www.w3.org/1999/xlink">

    <rect x="100" y="100" height="110" width="110"
         style="stroke:#ff0000; fill: #0000ff">
		 <animateTransform attributeName="transform" type="rotate"
          from="0 155 155" to="360 155 155" dur="2s" repeatDur="indefinite"/>
    </rect>

</svg>