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: |
![]() |
|
|
|
The masterpiece is almost complete-- you just need to paint the green apple in front of his face! The pre-placed blocks will help you draw a circle (the apple). Please modify the blocks so that the circle will have a radius of 2.5 and is at the center of his face (12, 12).
/* Code generated by RoboBlockly v2.0 */ /* Problem Statement: Please draw a green circle (the apple) in front of his face to complete the painting. The circle should have a radius of 2.5 and placed at the center of his face, which is at (12, 12). */ #include <chplot.h> CPlot plot; plot.noStrokeColor(); plot.fillColor("#99ff99"); plot.circle(12, 12, 2.5); 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 masterpiece is almost complete-- you just need to paint the green apple in front of his face! The pre-placed blocks will help you draw a circle (the apple). Please modify the blocks so that the circle will have a radius of 2.5 and is at the center of his face (12, 12). |
|||||||||||