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: |
![]() |
|
|
|
|
|
/* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> CLinkbotI robot1; double radius1 = 1.75; CLinkbotI robot2; double radius2 = 1.75; double trackwidth1 = 3.69; double trackwidth2 = 3.69; int count; robot1.setSpeed(4, radius1); robot2.setSpeed(4, radius2); count = 0; while(count < 10) { robot1.driveDistanceNB(10, radius1); robot2.driveDistance(10, radius2); robot1.moveWait(); robot1.turnLeftNB(90, radius1, trackwidth1); robot2.turnLeft(90, radius2, trackwidth2); robot1.moveWait(); count = count + 1; }
Problem Statement: Two robots have been placed on the coordinate grid. Robot 1 is placed facing right at (-5, -5) and Robot 2 is facing left at (5, 5). Robot 1 will have red blocks and Robot 2 has green blocks. You will need to insert two additional blocks for Robot 2 to make the two robots chase each other around a square path. The Non-Blocking blocks for Robot 1 have already been placed. Make sure to add your two additional blocks for Robot 2 to the inside of the repeat loop. |
|||||||||||