MOOSE generated documentation [skip ci]

This commit is contained in:
FlightControl-User
2020-12-16 10:36:31 +00:00
parent 503e0ed8c0
commit 6734370d93
25 changed files with 673 additions and 523 deletions

View File

@@ -1534,6 +1534,7 @@ The method <a href="##(CONTROLLABLE).SetTaskWaypoint">CONTROLLABLE.SetTaskWaypoi
<li><a href="##(CONTROLLABLE).Route">CONTROLLABLE.Route</a>(): Make the Controllable to follow a given route.</li>
<li><a href="##(CONTROLLABLE).RouteGroundTo">CONTROLLABLE.RouteGroundTo</a>(): Make the GROUND Controllable to drive towards a specific coordinate.</li>
<li><a href="##(CONTROLLABLE).RouteAirTo">CONTROLLABLE.RouteAirTo</a>(): Make the AIR Controllable to fly towards a specific coordinate.</li>
<li><a href="CONTROLLABLE.RelocateGroundRandomInRadius.html">CONTROLLABLE.RelocateGroundRandomInRadius</a>(): Relocate the GROUND controllable to a random point in a given radius.</li>
</ul>
<h1>5) Option methods</h1>
@@ -2100,6 +2101,12 @@ The method <a href="##(CONTROLLABLE).SetTaskWaypoint">CONTROLLABLE.SetTaskWaypoi
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CONTROLLABLE).PushTask">CONTROLLABLE:PushTask(DCSTask, WaitTime)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Pushing Task on the queue from the controllable.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(CONTROLLABLE).RelocateGroundRandomInRadius">CONTROLLABLE:RelocateGroundRandomInRadius(speed, radius, onroad, shortcut)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>(GROUND) Relocate controllable to a random point within a given radius; use e.g.for evasive actions; Note that not all ground controllables can actually drive, also the alarm state of the controllable might stop it from moving.</p>
</td>
</tr>
<tr class="w3-border">
@@ -7844,6 +7851,78 @@ Warning! When you switch this option off, the airborne group will continue to fl
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(CONTROLLABLE).RelocateGroundRandomInRadius" ><strong>CONTROLLABLE:RelocateGroundRandomInRadius(speed, radius, onroad, shortcut)</strong></a></h2>
</div>
<p>(GROUND) Relocate controllable to a random point within a given radius; use e.g.for evasive actions; Note that not all ground controllables can actually drive, also the alarm state of the controllable might stop it from moving.</p>
<div id= "#Functions##RelocateGroundRandomInRadius" class="w3-show w3-white">
<div class="w3-container w3-white" id="functiontype">
<h2><strong>Defined in:</strong></h2>
<div class="w3-margin-left">
<p>CONTROLLABLE</p>
</div>
<h2><strong>Parameters:</strong></h2>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>speed</strong></strong>
</p>
</div>
<div class="w3-half">
<p>Speed of the controllable, default 20</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#number
<strong><strong>radius</strong></strong>
</p>
</div>
<div class="w3-half">
<p>Radius of the relocation zone, default 500</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#boolean
<strong><strong>onroad</strong></strong>
</p>
</div>
<div class="w3-half">
<p>If true, route on road (less problems with AI way finding), default true</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
#boolean
<strong><strong>shortcut</strong></strong>
</p>
</div>
<div class="w3-half">
<p>If true and onroad is set, take a shorter route - if available - off road, default false</p>
</div>
</div>
</div>
</div>
</div>