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: |
![]() |
|
|
|
The pre-placed blocks will come close to creating one line of the star, but it doesn’t match up exactly with the given line. Modify and add blocks in order to complete the star.
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; int count; robot.traceColor("red", 3); count = 0; while(count < 10) { robot.turnRight(36, radius, trackwidth); robot.driveDistance(8, radius); robot.driveDistance(-8, radius); count = count + 1; }
Problem Statement: The pre-placed blocks will come close to creating one line of the star, but it doesn’t match up exactly with the given line. Modify and add blocks in order to complete the star. |
|||||||||||