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> CPlot plot; int count; int count2; //plot.backgroundImage("stars.png"); count = 0; while(count < 40) { plot.noStrokeColor(); plot.fillColor("#ffff33"); plot.star(randint(1, 24), randint(1, 24), 2, 0); count = count + 1; } plot.fillOpacity(0.5); count2 = 0; while(count2 < 40) { plot.noStrokeColor(); plot.fillColor("orange"); plot.circle(randint(1, 24), randint(1, 24), 0.4); count2 = count2 + 1; } plot.grid(PLOT_OFF); plot.axisRange(PLOT_AXIS_XY, 0, 24); plot.ticsRange(PLOT_AXIS_XY, 2); plot.sizeRatio(1); plot.plotting();
Problem Statement: The pre-placed block sets the background to black. Use one loop to draw stars and another to draw circles. |
||||||||||||