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: |
![]() |
|
|
|
Rectangle 1: height = 12 units and width = 20 units.
Rectangle 2: height = 6 units and width = 10 units.
Rectangle 3: height = 3 units and width = 5 units.
You will first begin by assigning arguments in the create rectangle function. Then you will need to assign values to the dimensions of your rectangles./* Code generated by RoboBlockly v2.0 */ #include <linkbot.h> CLinkbotI robot; double radius = 1.75; double trackwidth = 3.69; int count; // Describe this function... void createRectangle(double x, double y) { count = 0; while(count < 2) { robot.driveDistance(x, radius); robot.turnRight(90, radius, trackwidth); robot.driveDistance(y, radius); robot.turnRight(90, radius, trackwidth); count = count + 1; } } createRectangle(20, 12); createRectangle(10, 6); createRectangle(5, 3);
Problem Statement: Use the function block to create a three rectangles.
Rectangle 1: height = 12 units and width = 20 units. Rectangle 2: height = 6 units and width = 10 units. Rectangle 3: height = 3 units and width = 5 units. You will first begin by assigning arguments in the create rectangle function. Then you will need to assign values to the dimensions of your rectangles. |
||||||||||||