drawRectangle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
 
m (Text replacement - "[[Image:" to "[[File:")
 
(82 intermediate revisions by 12 users not shown)
Line 1: Line 1:
[[Category:Scripting Commands|DRAWRECTANGLE]]
{{RV|type=command
[[Category:Scripting Commands ArmA|DRAWRECTANGLE]]


|game1= arma1
|version1= 1.00


|game2= arma2
|version2= 1.00


<h2 style="color:#000066">''map'' ''''' drawRectangle ''''' ''[center, a, b, angle, color, fill]''</h2>
|game3= arma2oa
|version3= 1.50


|game4= tkoh
|version4= 1.00


'''Operand types:'''
|game5= arma3
|version5= 0.50


'''map''': [[Control]]
|gr1= GUI Control - Map


'''[center, a, b, angle, color, fill]''': [[Array]]
|descr= Draws a rectangle on the map.<br> [[File:drawRectangle.jpg|250px]]


'''Type of returned value:'''
|s1= map [[drawRectangle]]  [centre, halfWidth, halfHeight, angle, color, fill]


[[Nothing]]
|p1= map: [[Control]]


'''Compatibility:'''
|p2= centre: [[Object]] or [[Array]] in format [[Position#Introduction|Position2D]] or [[Position#Introduction|Position3D]] - rectangle's centre


Version 2.35 required.
|p3= halfWidth: [[Number]] - 1/2 width of rectangle in meters


'''Description:'''
|p4= halfHeight: [[Number]] - 1/2 height of rectangle in meters


Draw a Rectangle on the map.
|p5= angle: [[Number]] - angle of rotation in degrees
 
|p6= color: [[Array]] format [[Color|Color (RGBA)]] - line color
 
|p7= fill: [[String]] - fill texture file or [[Procedural Textures]]. Note that the file texture will not rotate with rectangle, use [[drawIcon]] for that. If fill texture is not empty, set line color to white <sqf inline>[1,1,1,1]</sqf>
 
|r1= [[Nothing]]
 
|x1= <sqf>
_ctrl drawRectangle [
getPos player,
20,
20,
getDir player,
[0,0,1,1],
""
];
</sqf>
 
|x2= <sqf>
_ctrl drawRectangle [
player,
10,
20,
getDir player,
[1,1,1,1],
"#(rgb,8,8,3)color(1,0,0,1)"
];
</sqf>
 
|seealso= [[drawArrow]] [[drawEllipse]] [[drawIcon]] [[drawLine]] [[drawPolygon]] [[drawTriangle]]
}}
 
{{Note
|user= Waffle SS.
|timestamp= 20140323002100
|text= Map example:
<sqf>
(findDisplay 12 displayCtrl 51) ctrlAddEventHandler ["Draw",{
(_this select 0) drawRectangle [
getPos player,
20,
20,
getDir player,
[0,0,1,1],
""
];
}];
</sqf>
Be careful when using this command. Unlike map markers, the draw commands can decrease your framerate.
}}

Latest revision as of 00:10, 21 November 2023

Hover & click on the images for description

Description

Description:
Draws a rectangle on the map.
drawRectangle.jpg
Groups:
GUI Control - Map

Syntax

Syntax:
map drawRectangle [centre, halfWidth, halfHeight, angle, color, fill]
Parameters:
map: Control
centre: Object or Array in format Position2D or Position3D - rectangle's centre
halfWidth: Number - 1/2 width of rectangle in meters
halfHeight: Number - 1/2 height of rectangle in meters
angle: Number - angle of rotation in degrees
color: Array format Color (RGBA) - line color
fill: String - fill texture file or Procedural Textures. Note that the file texture will not rotate with rectangle, use drawIcon for that. If fill texture is not empty, set line color to white [1,1,1,1]
Return Value:
Nothing

Examples

Example 1:
_ctrl drawRectangle [ getPos player, 20, 20, getDir player, [0,0,1,1], "" ];
Example 2:
_ctrl drawRectangle [ player, 10, 20, getDir player, [1,1,1,1], "#(rgb,8,8,3)color(1,0,0,1)" ];

Additional Information

See also:
drawArrow drawEllipse drawIcon drawLine drawPolygon drawTriangle

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
Waffle SS. - c
Posted on Mar 23, 2014 - 00:21 (UTC)
Map example:
(findDisplay 12 displayCtrl 51) ctrlAddEventHandler ["Draw",{ (_this select 0) drawRectangle [ getPos player, 20, 20, getDir player, [0,0,1,1], "" ]; }];
Be careful when using this command. Unlike map markers, the draw commands can decrease your framerate.