I'm messing around with Raphael.js and would like to import some SVG
into Raphael Objects. I've checked some twitter posts from https://twitter.com/RaphaelJS where he is saying that you can copy and paste the path points and use them. Unfortanetly I can't get it to work.
What I would simply like to do is this simple svg:
<svg version="1.1" id="Ebene_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="841.89px" height="595.28px" viewBox="0 0 841.89 595.28" enable-background="new 0 0 841.89 595.28" xml:space="preserve">
<polyline fill="#CBBBA0" stroke="#000000" stroke-miterlimit="10" points="272.343,345.194 307.418,535.492 349.955,342.955 "/>
<circle fill="#E30613" stroke="#000000" stroke-miterlimit="10" cx="277.194" cy="282.881" r="62.313"/>
</svg>
into Raphael-Objects. Maybe you have some ideas how to solve this.
I thought it could be possible like this:
var paper = Raphael(10, 50, 320, 200);
paper.path(["272.343,345.194 307.418,535.492 349.955,342.955"])
bummer! Doesn't work
Thanks