sizeOf: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(description updated)
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| Return approximate size of the entity of given type (y-axis, in meters)<br>
| Returns an approximate size of the object of given type in meters. Size returned is usually bigger than the biggest size of the object along any of the axes. For example if object is 10 x 4 x 5 the [[sizeOf]] value returned expected to be around 10. If you need to estimate the size of the object more precisely, use [[boundingBox]] or [[boundingBoxReal]].
Object has to be present in current mission to be able to read a size (otherwise zero will be returned). |= Description
 
'''NOTE:''' The object has to be present in current mission to be able to read its size (otherwise zero will be returned).
|= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 18: Line 20:
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>_Xdimension=sizeOf "M1Abrams"</pre> returns 10.7833|= Example 1
|x1= <code>_dimension = [[sizeOf]] "M1Abrams"; //returns 10.7833</code>|= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[boundingBox]] |= See also
| [[boundingBox]], [[boundingBoxReal]] |= See also


}}
}}

Revision as of 12:37, 4 January 2014

-wrong parameter ("Arma") defined!-1.08
Hover & click on the images for description

Description

Description:
Returns an approximate size of the object of given type in meters. Size returned is usually bigger than the biggest size of the object along any of the axes. For example if object is 10 x 4 x 5 the sizeOf value returned expected to be around 10. If you need to estimate the size of the object more precisely, use boundingBox or boundingBoxReal. NOTE: The object has to be present in current mission to be able to read its size (otherwise zero will be returned).
Groups:
Uncategorised

Syntax

Syntax:
Number = sizeOf type
Parameters:
type: String
Return Value:
Number

Examples

Example 1:
_dimension = sizeOf "M1Abrams"; //returns 10.7833

Additional Information

See also:
boundingBoxboundingBoxReal

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section