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 robot; double radius = 1.75; double trackwidth = ; int count; robot.setSpeed(50, radius); count = 0; while(count < 8) { robot.driveDistance(6, radius); robot.turnRight(30, radius, trackwidth); robot.driveDistance(3, radius); robot.driveDistance(-3, radius); robot.turnLeft(60, radius, trackwidth); robot.driveDistance(3, radius); robot.driveDistance(-3, radius); robot.turnRight(30, radius, trackwidth); robot.driveDistance(-6, radius); robot.turnLeft(45, radius, trackwidth); count = count + 1; }
Problem Statement: The pre-placed blocks drew the first two segments of the fractal. Add in the necessary blocks to complete the fractal design. Hint: you might want to use a loop to condense the number of blocks needed.
Play around to see if you can come up with other alternate designs. |
|||||||||||
|
|||||||||||