mirror of
https://github.com/FlightControl-Master/MOOSE_DOCS.git
synced 2025-08-15 10:37:49 +00:00
MOOSE generated documentation [skip ci]
This commit is contained in:
@@ -2188,7 +2188,7 @@ is implemented in the AIRBASE class as <a href="##(AIRBASE).GetName">AIRBASE.Get
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="w3-border">
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(AIRBASE).GetBoundingRadius">AIRBASE:GetBoundingRadius(mindist)</a></p></td>
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(AIRBASE).GetBoundingRadius">AIRBASE:GetBoundingRadius(MinDist)</a></p></td>
|
||||
<td class="summary w3-half w3-container" style="word-wrap: break-word">
|
||||
<p>Get the bounding radius of the underlying POSITIONABLE DCS Object.</p>
|
||||
</td>
|
||||
@@ -2214,13 +2214,13 @@ is implemented in the AIRBASE class as <a href="##(AIRBASE).GetName">AIRBASE.Get
|
||||
<tr class="w3-border">
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(AIRBASE).GetCoord">AIRBASE:GetCoord()</a></p></td>
|
||||
<td class="summary w3-half w3-container" style="word-wrap: break-word">
|
||||
<p>Returns a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
<p>Returns a reference to a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="w3-border">
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(AIRBASE).GetCoordinate">AIRBASE:GetCoordinate()</a></p></td>
|
||||
<td class="summary w3-half w3-container" style="word-wrap: break-word">
|
||||
<p>Returns a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
<p>Returns a new COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="w3-border">
|
||||
@@ -2344,7 +2344,7 @@ is implemented in the AIRBASE class as <a href="##(AIRBASE).GetName">AIRBASE.Get
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="w3-border">
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(AIRBASE).GetRelativeVelocity">AIRBASE:GetRelativeVelocity(positionable)</a></p></td>
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(AIRBASE).GetRelativeVelocity">AIRBASE:GetRelativeVelocity(Positionable)</a></p></td>
|
||||
<td class="summary w3-half w3-container" style="word-wrap: break-word">
|
||||
<p>Get relative velocity with respect to another POSITIONABLE.</p>
|
||||
</td>
|
||||
@@ -6487,7 +6487,7 @@ Ship:Destroy( false ) -- Don't generate an event upon destruction.
|
||||
<div class="w3-card-2 w3-padding-small w3-margin-top">
|
||||
|
||||
<div class="w3-theme-l2">
|
||||
<h2><a id="#(AIRBASE).GetBoundingRadius" ><strong>AIRBASE:GetBoundingRadius(mindist)</strong></a></h2>
|
||||
<h2><a id="#(AIRBASE).GetBoundingRadius" ><strong>AIRBASE:GetBoundingRadius(MinDist)</strong></a></h2>
|
||||
</div>
|
||||
|
||||
<p>Get the bounding radius of the underlying POSITIONABLE DCS Object.</p>
|
||||
@@ -6503,12 +6503,12 @@ Ship:Destroy( false ) -- Don't generate an event upon destruction.
|
||||
<div class="w3-half">
|
||||
<p>
|
||||
#number
|
||||
<strong><strong>mindist</strong></strong>
|
||||
<strong><strong>MinDist</strong></strong>
|
||||
</p>
|
||||
</div>
|
||||
<div class="w3-half">
|
||||
|
||||
<p>(Optional) If bounding box is smaller than this value, mindist is returned.</p>
|
||||
<p>(Optional) If bounding box is smaller than this value, MinDist is returned.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -6640,10 +6640,13 @@ Ship:Destroy( false ) -- Don't generate an event upon destruction.
|
||||
<h2><a id="#(AIRBASE).GetCoord" ><strong>AIRBASE:GetCoord()</strong></a></h2>
|
||||
</div>
|
||||
|
||||
<p>Returns a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
<p>Returns a reference to a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
|
||||
|
||||
<p>If the POSITIONABLE has a COORDINATE OBJECT set, it updates it. If not, it creates a new COORDINATE object.</p>
|
||||
<p>This function works similar to POSITIONABLE.GetCoordinate(), however, this function caches, updates and re-uses the same COORDINATE object stored
|
||||
within the POSITIONABLE. This has higher performance, but comes with all considerations associated with the possible referencing to the same COORDINATE object.
|
||||
This should only be used when performance is critical and there is sufficient awareness of the possible pitfalls. However, in most instances, GetCoordinate() is
|
||||
preferred as it will return a fresh new COORDINATE and thus avoid potentially unexpected issues.</p>
|
||||
|
||||
<div id= "#Functions##GetCoord" class="w3-show w3-white">
|
||||
<div class="w3-container w3-white" id="functiontype">
|
||||
@@ -6658,8 +6661,7 @@ Ship:Destroy( false ) -- Don't generate an event upon destruction.
|
||||
</div>
|
||||
<div class="w3-half">
|
||||
|
||||
<p>The COORDINATE of the POSITIONABLE.
|
||||
TODO: Seems to have been introduced with Airboss. Should it be renamed to better reflect the difference to "GetCoordinate" (it is currently ambiguous)? Or perhaps just be a switch in the the GetCoordinate function; forceCoordinateUpate?</p>
|
||||
<p>A reference to the COORDINATE object of the POSITIONABLE.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -6674,7 +6676,7 @@ TODO: Seems to have been introduced with Airboss. Should it be renamed to better
|
||||
<h2><a id="#(AIRBASE).GetCoordinate" ><strong>AIRBASE:GetCoordinate()</strong></a></h2>
|
||||
</div>
|
||||
|
||||
<p>Returns a COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
<p>Returns a new COORDINATE object indicating the point in 3D of the POSITIONABLE within the mission.</p>
|
||||
|
||||
<div id= "#Functions##GetCoordinate" class="w3-show w3-white">
|
||||
<div class="w3-container w3-white" id="functiontype">
|
||||
@@ -6689,7 +6691,7 @@ TODO: Seems to have been introduced with Airboss. Should it be renamed to better
|
||||
</div>
|
||||
<div class="w3-half">
|
||||
|
||||
<p>The COORDINATE of the POSITIONABLE.</p>
|
||||
<p>A new COORDINATE object of the POSITIONABLE.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@@ -7622,7 +7624,7 @@ Coordinates are dependent on the position of the maps origin.</p>
|
||||
<div class="w3-card-2 w3-padding-small w3-margin-top">
|
||||
|
||||
<div class="w3-theme-l2">
|
||||
<h2><a id="#(AIRBASE).GetRelativeVelocity" ><strong>AIRBASE:GetRelativeVelocity(positionable)</strong></a></h2>
|
||||
<h2><a id="#(AIRBASE).GetRelativeVelocity" ><strong>AIRBASE:GetRelativeVelocity(Positionable)</strong></a></h2>
|
||||
</div>
|
||||
|
||||
<p>Get relative velocity with respect to another POSITIONABLE.</p>
|
||||
@@ -7638,7 +7640,7 @@ Coordinates are dependent on the position of the maps origin.</p>
|
||||
<div class="w3-half">
|
||||
<p>
|
||||
<a href="##(POSITIONABLE)">#POSITIONABLE</a>
|
||||
<strong><strong>positionable</strong></strong>
|
||||
<strong><strong>Positionable</strong></strong>
|
||||
</p>
|
||||
</div>
|
||||
<div class="w3-half">
|
||||
|
||||
Reference in New Issue
Block a user