Initial mobile website check in

This commit is contained in:
francisli
2005-01-27 06:48:42 +00:00
parent dd0a7090b1
commit cce150ac8c
157 changed files with 10493 additions and 0 deletions
+64
View File
@@ -0,0 +1,64 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>point()</name>
<category>Shape</category>
<subcategory>2D Primitives</subcategory>
<usage>Web &amp; Application</usage>
<example>
<image>point_.gif</image>
<code>
point(30, 20);
point(85, 20);
point(85, 75);
point(30, 75);
</code>
</example>
<description>
A point is a coordinate in space. In Processing, points have a dimension of one pixel. The first parameter is the horizontal value for the point, the second value is the vertical value for the point, and the optional third value is the depth value.
</description>
<syntax>
point(<c>x1</c>, <c>y1</c>);
point(<c>x1</c>, <c>y1</c>, <c>z1</c>);
</syntax>
<parameter>
<label>x1</label>
<description>int or float: x-coordinate of the point</description>
</parameter>
<parameter>
<label>y1</label>
<description>int or float: y-coordinate of the point</description>
</parameter>
<parameter>
<label>z1</label>
<description>int or float: z-coordinate of the point</description>
</parameter>
<returns>None</returns>
<related>
beginShape()
</related>
<availability>1.0</availability>
<type>Function</type>
<partof>Core</partof>
</root>