mirror of
https://github.com/processing/processing4.git
synced 2026-02-12 18:10:43 +01:00
45 lines
698 B
XML
45 lines
698 B
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
|
<root>
|
|
<name>noFill()</name>
|
|
|
|
<category>Color</category>
|
|
|
|
<subcategory>Setting</subcategory>
|
|
|
|
<usage>Web & Application</usage>
|
|
|
|
<example>
|
|
<image>noFill_.gif</image>
|
|
<code>
|
|
rect(15, 10, 55, 55);
|
|
noFill();
|
|
rect(30, 20, 55, 55);
|
|
</code>
|
|
</example>
|
|
|
|
<description>
|
|
Disables filling geometry. If both <b>noStroke()</b> and <b>noFill()</b> are called, nothing will be drawn to the screen.
|
|
</description>
|
|
|
|
<syntax>
|
|
noFill()
|
|
</syntax>
|
|
|
|
<parameter>
|
|
<label></label>
|
|
<description></description>
|
|
</parameter>
|
|
|
|
<returns>None</returns>
|
|
|
|
<related>
|
|
fill()
|
|
</related>
|
|
|
|
<availability>1.0</availability>
|
|
|
|
<type>Function</type>
|
|
|
|
<partof>Core</partof>
|
|
</root>
|