Difference between revisions of "Canvas 3D - Scale Tags"
(→Syntax) |
|||
Line 19: | Line 19: | ||
<pre> | <pre> | ||
<canvas> | <canvas> | ||
− | <scale | + | <scale factor="3.0"> |
<cube name="mycube" size="1.0" /> | <cube name="mycube" size="1.0" /> | ||
<sphere name="mysphere" size="30.0" /> | <sphere name="mysphere" size="30.0" /> |
Revision as of 10:49, 16 March 2007
Scale Tag Reference
Introduction
The Scale Tag is a way of scaling multiple objects in a direction all at the same time. Any Tags that are written within the Scale Tag are scaled by an amount specified by its attribute.
Tag Attributes
- factor
- Usage: <scale factor="3.0"> ... </scale>.
- The factor attribute contains a value that modifies the size attribute of the objects the scale tag encompasses.
- The values inside the factor attribute are additive.
- This attribute is mandatory.
Syntax
<canvas> <scale factor="3.0"> <cube name="mycube" size="1.0" /> <sphere name="mysphere" size="30.0" /> </scale> </canvas>
References
- None.