V.transformLine(line, matrix)
Transform a line by an SVG transformation represented by matrix.
matrix
var line = new g.Line({ x: 10, y: 20 }, { x: 100, y: 200 }); var rotatedLine = V.transformLine(line, V.createSVGMatrix().rotate(45));