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 = 3.69; robot.traceOff(); robot.drivexyTo(3, -2, radius, trackwidth); robot.traceOn(); robot.drivexyTo(-2, 5, radius, trackwidth); robot.drivexyTo(5, 8, radius, trackwidth); robot.drivexyTo(3, -2, radius, trackwidth); robot.traceOff(); robot.drivexyTo(11, -2, radius, trackwidth); robot.traceOn(); robot.drivexyTo(16, 5, radius, trackwidth); robot.drivexyTo(9, 8, radius, trackwidth); robot.drivexyTo(11, -2, radius, trackwidth);
Problem Statement: The pre-placed blocks will draw one side of the pre-image of a triangle whose vertices are given by the points (3, -2), (-2, 5), and (5, 8). Add blocks to draw the rest of the pre-image triangle, then reflect the triangle over the line x = 7 to get the new image of the triangle. |
|||||||||||