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 <chplot.h> double i; CPlot plot; int count; count = 0; while(count < 3) { for(i = 18; i >= -7; i -= 0.5) { plot.backgroundColor("#006600"); plot.noStrokeColor(); plot.fillColor("#330033"); plot.fillOpacity(0.5); plot.rectangle(-12, -12, 36, 4); plot.fillColor("red"); plot.fillOpacity(1); plot.circle(0, i, 1); delaySeconds(0.03); } for(i = -7; i <= 18; i += 0.5) { plot.backgroundColor("#006600"); plot.noStrokeColor(); plot.fillColor("#330033"); plot.fillOpacity(0.5); plot.rectangle(-12, -12, 36, 4); plot.fillColor("red"); plot.fillOpacity(1); plot.circle(0, 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 pre-placed block will draw a ball and a “floor.” Animate it so that it moves downwards, hits the floor, and back up multiple times. |
||||||||||||