正剧开始:
星历2016年01月05日 14:10:42, 银河系厄尔斯星球中华帝国江南行省。
[工程师阿伟]正在和[机器小伟]一起研究图形的运动(一)。
小伟看到了轴对称图形的概念:
小伟看到了平移的概念:
小伟看到了旋转的概念:
小伟给出了解答:
<span style="font-size:18px;">function myDraw() { plot.init(); setPreference(); //图片 var image = new Image(); image.src = "./1.jpg"; image.onload = function() { plot.drawImage(image); var x0 = 58, y0=180, x1 = 220, y1 = y0, x2 = 389, y2 = 173; var r = 15; plot.setStrokeStyle('yellow'); strokeCircle(x0, y0, r*1.414); strokeCircle(x1, y1, r*1.414); strokeCircle(x2, y2, r); plot.setStrokeStyle('blue'); strokeCircle(x0, y0, r*2*1.414); strokeCircle(x1, y1, r*Math.sqrt(20)); strokeCircle(x2, y2, r*Math.sqrt(13)); plot.setStrokeStyle('red'); strokeCircle(x0, y0, r*3*1.414); strokeCircle(x1, y1, r*Math.sqrt(13)); strokeCircle(x2, y2, r*Math.sqrt(5)); } }</span>
本节到此结束,欲知后事如何,请看下回分解。