Lines Matching refs:svg
19 svg = null; field in ImageMappingEditor
146 this.svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
150 this.svg.setAttribute('viewBox', '0 0 ' + img.width + ' ' + img.height);
159 this.svg.appendChild(image);
165 this.svg.appendChild(group);
181 this.$dialog.append(this.svg);
216 Array.from(this.svg.querySelectorAll('circle.handle')).forEach((h) => h.remove());
236 this.svg.appendChild(handle);
244 const handles = Array.from(this.svg.querySelectorAll('circle.handle'));
267 const group = this.svg.querySelector('g');
299 const svg = this.svg;
300 svg.addEventListener('mousedown', startDrag);
301 svg.addEventListener('mousemove', drag);
302 svg.addEventListener('mouseup', endDrag);
303 svg.addEventListener('mouseleave', endDrag);
304 svg.addEventListener('touchstart', startDrag);
305 svg.addEventListener('touchmove', drag);
306 svg.addEventListener('touchend', endDrag);
307 svg.addEventListener('touchleave', endDrag);
308 svg.addEventListener('touchcancel', endDrag);
314 const CTM = svg.getScreenCTM();
341 self.updateCoordinates(svg);
342 self.drawPolygon(svg, self.coords);