Difference between revisions of "Canvas 3D - Arc Tag"
(→Tag Attributes) |
|||
Line 1: | Line 1: | ||
− | = | + | = Cube Tag Reference = |
[[XML_3D_-_BTS530/630 Project|Back To XML 3D Main Page]] | [[XML_3D_-_BTS530/630 Project|Back To XML 3D Main Page]] | ||
Line 5: | Line 5: | ||
== Introduction == | == Introduction == | ||
− | The Arc is one of the basic primitives that can be created | + | The Arc is one of the basic 2D primitives that can be created within canvas. The ArcTag encompasses the various attributes that are associated with an Arc, such as position, size, height, starting and ending pointers, as well as drawing styles. |
== Tag Attributes == | == Tag Attributes == | ||
− | |||
− | |||
− | |||
− | |||
− | |||
* position | * position | ||
− | ** '''Usage:''' <arc position=" | + | ** '''Usage:''' <arc position="35, 53" />. |
− | ** The ''position'' attribute is optional. If | + | ** The ''position'' attribute is optional. If omited, the position defaults to the Origin location at {0, 0}. |
− | ** The position attribute holds a set of | + | ** The position attribute holds a set of two numbers separated by commas that are associated with the distance away from the Origin Point of (0, 0). |
* size | * size | ||
− | ** '''Usage:''' <arc size=" | + | ** '''Usage:''' <arc size="40" />. |
− | ** The ''size'' attribute defines the size of the | + | ** The ''size'' attribute defines the diameter size of the arc. |
+ | ** ''This attribute cannot be omitted.'' | ||
+ | * fillcolor | ||
+ | ** '''Usage:''' <arc fillcolor="#00FF00" />. | ||
+ | ** The ''fillcolor'' attribute sets a specific color that will be painted inside the arc. | ||
+ | ** This value, if omitted, will default to black (#000000). | ||
+ | * bordercolor | ||
+ | ** '''Usage:''' <arc bordercolor="#FF00FF" />. | ||
+ | ** The ''bordercolor'' attribute sets a specific color of the border. | ||
+ | ** If omitted, the arc will be drawn borderless. | ||
+ | * startrad | ||
+ | ** '''Usage:''' <arc startrad="3.14" />. | ||
+ | ** The ''startrad'' attribute defines the angle at which the arc will start at. | ||
+ | ** This attribute uses rad rather then degrees. Further implementation will accept both. | ||
+ | ** ''This attribute cannot be omitted.'' | ||
+ | * endrad | ||
+ | ** '''Usage:''' <arc endrad="4.0" />. | ||
+ | ** The ''endrad'' attribute defines the angle at which the arc will end at. | ||
+ | ** This attribute uses rad rather then degrees. Further implementation will accept both. | ||
+ | ** ''This attribute cannot be omitted.'' | ||
+ | * clockwise | ||
+ | ** '''Usage:''' <arc clockwise="true" />. | ||
+ | ** The ''clockwise'' attribute sets the drawing direction of the arc. | ||
+ | ** This attribute accepts only true or false values. | ||
+ | ** ''This attribute cannot be omitted.'' | ||
+ | |||
== Syntax == | == Syntax == | ||
Line 26: | Line 46: | ||
<pre> | <pre> | ||
<canvas> | <canvas> | ||
− | <arc | + | <arc position="100, 300" size="58" fillcolor="#D0D" bordercolor="#0FF" startrad="3.14" endrad="0" clockwise="true" /> |
</canvas> | </canvas> | ||
</pre> | </pre> |
Revision as of 16:11, 10 February 2007
Cube Tag Reference
Introduction
The Arc is one of the basic 2D primitives that can be created within canvas. The ArcTag encompasses the various attributes that are associated with an Arc, such as position, size, height, starting and ending pointers, as well as drawing styles.
Tag Attributes
- position
- Usage: <arc position="35, 53" />.
- The position attribute is optional. If omited, the position defaults to the Origin location at {0, 0}.
- The position attribute holds a set of two numbers separated by commas that are associated with the distance away from the Origin Point of (0, 0).
- size
- Usage: <arc size="40" />.
- The size attribute defines the diameter size of the arc.
- This attribute cannot be omitted.
- fillcolor
- Usage: <arc fillcolor="#00FF00" />.
- The fillcolor attribute sets a specific color that will be painted inside the arc.
- This value, if omitted, will default to black (#000000).
- bordercolor
- Usage: <arc bordercolor="#FF00FF" />.
- The bordercolor attribute sets a specific color of the border.
- If omitted, the arc will be drawn borderless.
- startrad
- Usage: <arc startrad="3.14" />.
- The startrad attribute defines the angle at which the arc will start at.
- This attribute uses rad rather then degrees. Further implementation will accept both.
- This attribute cannot be omitted.
- endrad
- Usage: <arc endrad="4.0" />.
- The endrad attribute defines the angle at which the arc will end at.
- This attribute uses rad rather then degrees. Further implementation will accept both.
- This attribute cannot be omitted.
- clockwise
- Usage: <arc clockwise="true" />.
- The clockwise attribute sets the drawing direction of the arc.
- This attribute accepts only true or false values.
- This attribute cannot be omitted.
Syntax
<canvas> <arc position="100, 300" size="58" fillcolor="#D0D" bordercolor="#0FF" startrad="3.14" endrad="0" clockwise="true" /> </canvas>
References
- None.