Lines Matching refs:moveTo
18 prevToMethod = 'moveTo', // this is part of a patch for the problem that multiple moveTo commands = lineTo See drag:end
37 mycurve.moveTo(prevX,prevY);
56 myline.moveTo(myX,myY); //fixes issue of graphics needs a moveTo to start a new object or it won't draw.
74 toMethod = 'moveTo';
75 if(prevToMethod === 'moveTo'){ // this is part of a patch for the problem that multiple moveTo commands = lineTo
77 jsStr = jsStr.substring(0, jsStr.lastIndexOf('.moveTo(')) + '.end(); // lastEndMarker';
80 myline.moveTo(myX, myY); //Notice we're using myLine that is defined to do the real drawing
81 prevToMethod = 'moveTo';
85 mycurve.moveTo(prevX,prevY);
105 if(toMethod === 'moveTo'){
106 // this is part of a patch for the problem that multiple moveTo commands = lineTo See drag:end
126 myline.moveTo(prevX,prevY);
146 shiftIsDown = true; // This will be a myLine.moveTo
167 if(prevToMethod === 'moveTo'){ // this is part of a patch for the problem that multiple moveTo commands = lineTo
169 jsStr = jsStr.substring(0, jsStr.lastIndexOf('.moveTo(')) + '.end();\r\n\r\n'; // remove the last moveTo because a new object is being created
196 objName + '.moveTo(' + prevX + ',' + prevY + ');' + newLine +
220 myline.moveTo(200, 200);
233 mycurve.moveTo(200, 200);