How to convert the svg coordinates to three js coordinate

Hello All,

I have a some x,y coordinates that i got from my svg file and i want three js equivalent of them.

139.35,200.34 390.57,200.34 390.57,351.18 139.35,351.18 139.35,200.34

Please let me know how it is possible

Thanks

you better load the whole SVG into three.js then filter the points you need.
https://threejs.org/examples/?q=SVG#webgl_loader_svg

manually extracting raw data from a SVG path (like the kind you provided) is a pure nightmare