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 <chplot.h> double i; CPlot plot; int count; count = 0; while(count < 3) { for(i = 18; i >= -6; i -= 0.5) { plot.backgroundColor("#006600"); plot.noStrokeColor(); plot.fillColor("#330033"); plot.fillOpacity(0.5); plot.rectangle(-12, -12, 36, 5); plot.rectangle(10, -7, 3, 30); plot.rectangle(-7, -7, 3, 30); plot.fillColor("red"); plot.fillOpacity(1); plot.circle(double(i)/2, i, 1); delaySeconds(0.03); } for(i = -6; i <= 18; i += 0.5) { plot.backgroundColor("#006600"); plot.noStrokeColor(); plot.fillColor("#330033"); plot.fillOpacity(0.5); plot.rectangle(-12, -12, 36, 5); plot.rectangle(10, -7, 3, 30); plot.rectangle(-7, -7, 3, 30); plot.fillColor("red"); plot.fillOpacity(1); plot.circle(double(i)/2, i, 1); delaySeconds(0.03); } count = count + 1; } plot.axisRange(PLOT_AXIS_XY, -12, 24); plot.ticsRange(PLOT_AXIS_XY, 6); plot.sizeRatio(1); plot.plotting();
Problem Statement: The preplaced blocks will draw a ball, a floor, and two walls. Add blocks so the ball touches off both the walls and the floor. |
|||||||||||
|
|||||||||||