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 block began drawing the cube. Add in the necessary blocks and modify the existing ones to finish drawing the cube and draw 2 more cubes with any distance offset of your choice.
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; int count; int count2; int count3; robot.setSpeed(50, radius); robot.traceOff(); robot.driveDistance(-10, radius); robot.traceOn(); count3 = 0; while(count3 < 3) { count = 0; while(count < 4) { robot.driveDistance(6, radius); robot.turnRight(90, radius, trackwidth); count = count + 1; } robot.turnRight(315, radius, trackwidth); robot.driveDistance(3, radius); robot.turnRight(45, radius, trackwidth); robot.driveDistance(6, radius); robot.turnRight(135, radius, trackwidth); count2 = 0; while(count2 < 2) { robot.driveDistance(3, radius); robot.turnLeft(45, radius, trackwidth); robot.driveDistance(6, radius); robot.turnLeft(135, radius, trackwidth); count2 = count2 + 1; } robot.traceOff(); robot.turnLeft(135, radius, trackwidth); robot.driveDistance(3, radius); robot.traceOn(); count3 = count3 + 1; }
Problem Statement: The pre-placed block began drawing the cube. Add in the necessary blocks and modify the existing ones to finish drawing the cube and draw 2 more cubes with any distance offset of your choice. |
|||||||||||