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> double x; double y; double angle; CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; robot.turnRight(30, radius, trackwidth); robot.getPosition(x, y, angle); printf("angle is %g degrees\n", angle);
Problem Statement: The pre-placed block will change the angle of the robot to 0 degrees relative to the x-axis and output the angle value to the user. Change the blocks so that the outputted angle is 60 degrees. For this to be true, the angle must be 60 degrees relative to the x-axis. |
|||||||||||