友情提示:380元/半年,儿童学编程,就上码丁实验室。
编程1.2
认识坐标系, 正负数加减运算
使用坐标系,我们能标注出平面上每个点。
任务
1. 在坐标系中画出任意的点:
(120, 100)
(100, 120)
(-100, 120)
(200, -100)
(-200, -100)
(50, -100)
2. 在坐标纸上标注的点,能够读出坐标
3. 能够通过坐标移动的方法,找到从一个点到另一个点的方法
if we wish to move from point(100, 50) to point(150, 100) we shall
change x by _______
change y by ________
if we wish to move from point(100, 50) to point(100, -100) we shall
change x by _______
change y by ________
if we wish to move from point(100, -50) to point(-100, -100) we shall
change x by _______
change y by ________
if we wish to move from point(-100, 50) to point(100, -100) we shall
change x by _______
change y by ________
4. 熟悉scratch 界面,使用”go to point x: y: “ ,” glide 1 second to point x: y: “ 将物品移动到指定的位置
5. 使用change x by ___, change y by ____ 持续移动某个sprite
反复练习
将sprite 小伙伴在playground上持续进行 8字形状移动
附加练习
设计猫咪走路前进的动画,通过wait, move x by ___ ,让猫咪在屏幕上持续运动
如果能设计出故事, 就更棒啦!