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 | |
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(-11, -12, radius, trackwidth); robot.traceOn(); robot.drivexyTo(7, 24, radius, trackwidth); robot.traceOff(); robot.drivexyTo(6, 24, radius, trackwidth); robot.traceOn(); robot.drivexyTo(-6, -12, radius, trackwidth);
Problem Statement:
Draw the lines y=2x+10 and y=3x+6.
You will only use one robot to draw the two given lines.
You must use at minimum of 3 points to plot each line.
Each of your lines must go across the entire coordinate plane. |
||||||||||||