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; plot.noStrokeColor(); plot.fillColor("white"); plot.fillOpacity(0.5); plot.ellipse(12, 12, 10, 11, 0); plot.fillOpacity(1); plot.fillColor("#ff6600"); plot.triangle(12, 10, 13, 12, 11, 12); 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 blocks remove the stroke color and draw a face. Add the carrot nose by drawing an orange triangle on the face. |
||||||||||||