Snap SVG - Moving a loaded element around
Set a transform on the butterfly. You want a translate transform to move it. E.g.
butterfly.transform("t100,100");
That syntax is the same as Raphael. But you can also use a Snap matrix
var t = new Snap.Matrix()
t.translate(100, 100);
butterfly.transform(t);