drawPolygon: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|game([0-9]) ?= (.+) \|version([0-9]) ?= (.+) " to "|game$1= $2 |version$3= $4 ")
m (Some wiki formatting)
 
(30 intermediate revisions by 2 users not shown)
Line 6: Line 6:
|gr1= GUI Control - Map
|gr1= GUI Control - Map


|descr= Draws given polygon on the given map control with given color. The polygon must consist of at least 3 points. Unlike with other <tt>draw*</tt> commands and due to complexity, this command does not support filling of the polygon with color. Use [[drawTriangle]] command to construct and fill polygon shape as a workaround.
|descr= Draws given polygon on the given map control with given color. The polygon must consist of at least 3 points. Unlike with other {{hl|draw*}} commands and due to complexity, this command does not support filling of the polygon with color. Use [[drawTriangle]] command to construct and fill polygon shape as a workaround.


|s1= map [[drawPolygon]] [polygon, color]
|s1= map [[drawPolygon]] [polygon, color]
Line 12: Line 12:
|p1= map: [[Control]]
|p1= map: [[Control]]


|p2= polygon: [[Array]] of [[Position3D]]
|p2= polygon: [[Array]] of [[Position#Introduction|Position3D]]


|p3= color: [[Array]] - Line color in format [[Color|Color (RGBA)]]
|p3= color: [[Color|Color (RGBA)]]


|r1= [[Nothing]]
|r1= [[Nothing]]


|x1= <code>test_polygon = [];
|x1= <sqf>
[[for]] "_i" [[from]] 1 [[to]] 12 [[do]]
test_polygon = [];
for "_i" from 1 to 12 do  
{
{
test_polygon [[pushBack]] ([[player]] [[getPos]] [10 + [[random]] 100, 360/_i]);
test_polygon pushBack (player getPos [10 + random 100, 360 / _i]);
};
};


[[findDisplay]] 12 [[displayCtrl]] 51 [[ctrlAddEventHandler]] ["Draw",  
findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["Draw",  
{
{
[[params]] ["_control"];
params ["_control"];
_control [[drawPolygon]] [test_polygon, [0,0,1,1]];
_control drawPolygon [test_polygon, [0,0,1,1]];
}];</code>
}];
</sqf>


|x2= Draw a polygon by adjusting the {{ic|_radius}} and {{ic|_numVertices}}<code>vertices [[a = b|=]] [];
|x2= Draw a polygon by adjusting the {{hl|_radius}} and {{hl|_numVertices}}
[[private]] _numVertices [[a = b|=]] 2;
<sqf>
[[private]] _numVertices [[a = b|=]] _numVertices [[max]] 3;
vertices = [];
[[private]] _radius [[a = b|=]] 100;
private _numVertices = 2;
private _numVertices = _numVertices max 3;
private _radius = 100;


[[for]] "_i" [[from]] 1 [[to]] _numVertices [[do]]
for "_i" from 1 to _numVertices do
{
{
vertices [[pushBack]] ([[player]] [[getRelPos]] [_radius, 360/_numVertices [[a * b|*]] _i]);
vertices pushBack (player getRelPos [_radius, 360 / _numVertices * _i]);
};
};


[[findDisplay]] 12 [[displayCtrl]] 51 [[ctrlAddEventHandler]] ["Draw",
findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["Draw",
{
{
[[params]] ["_control"];
params ["_control"];
_control [[drawPolygon]] [vertices, [0,0,1,1]];
_control drawPolygon [vertices, [0,0,1,1]];
}];</code>
}];
</sqf>


|seealso= [[drawEllipse]], [[drawIcon]], [[drawLine]], [[drawRectangle]], [[drawArrow]], [[drawTriangle]], [[inPolygon]]
|seealso= [[drawEllipse]] [[drawIcon]] [[drawLine]] [[drawRectangle]] [[drawArrow]] [[drawTriangle]] [[inPolygon]]
}}
}}

Latest revision as of 16:37, 27 July 2022

Hover & click on the images for description

Description

Description:
Draws given polygon on the given map control with given color. The polygon must consist of at least 3 points. Unlike with other draw* commands and due to complexity, this command does not support filling of the polygon with color. Use drawTriangle command to construct and fill polygon shape as a workaround.
Groups:
GUI Control - Map

Syntax

Syntax:
map drawPolygon [polygon, color]
Parameters:
map: Control
polygon: Array of Position3D
color: Color (RGBA)
Return Value:
Nothing

Examples

Example 1:
test_polygon = []; for "_i" from 1 to 12 do { test_polygon pushBack (player getPos [10 + random 100, 360 / _i]); }; findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["Draw", { params ["_control"]; _control drawPolygon [test_polygon, [0,0,1,1]]; }];
Example 2:
Draw a polygon by adjusting the _radius and _numVertices
vertices = []; private _numVertices = 2; private _numVertices = _numVertices max 3; private _radius = 100; for "_i" from 1 to _numVertices do { vertices pushBack (player getRelPos [_radius, 360 / _numVertices * _i]); }; findDisplay 12 displayCtrl 51 ctrlAddEventHandler ["Draw", { params ["_control"]; _control drawPolygon [vertices, [0,0,1,1]]; }];

Additional Information

See also:
drawEllipse drawIcon drawLine drawRectangle drawArrow drawTriangle inPolygon

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