Grid: | ||
Tics Lines: |
|
Width
px
|
Hash Lines: |
|
Width
px
|
Labels: |
|
Font
px
|
Trace Lines: | ||
Robot 1: |
|
Width
px
|
Robot 2: |
|
Width
px
|
Robot 3: |
|
Width
px
|
Robot 4: |
|
Width
px
|
Axes: | x-axis | y-axis | Show Grid |
Grid: | 24x24 inches | 36x36 inches | 72x72 inches |
96x96 inches | 192x192 inches | ||
Quad: | 4 quadrants | 1 quadrant | Hardware |
Units: | US Customary | Metric |
Background: |
![]() |
|
|
|
Use the trace block to trace the movement of the robot from (0, 0) to (6, 5). Then have the robot move from (0, 10) to (6, 15), again tracing the movement of the robot. You do not want to trace the position of the robot between moves.
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; robot.traceOn(); robot.drivexyTo(6, 5, radius, trackwidth); robot.traceOff(); robot.drivexyTo(0, 10, radius, trackwidth); robot.traceOn(); robot.drivexyTo(6, 15, radius, trackwidth);
Problem Statement: Use the trace block to trace the movement of the robot from (0, 0) to (6, 5). Then have the robot move from (0, 10) to (6, 15), again tracing the movement of the robot. You do not want to trace the position of the robot between moves. |
|||||||||||