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:
@@ -1667,7 +1667,7 @@ The method <a href="##(POSITIONABLE).GetVelocity">POSITIONABLE.GetVelocity</a>()
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="w3-border">
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(POSITIONABLE).GetBoundingRadius">POSITIONABLE:GetBoundingRadius(mindist)</a></p></td>
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(POSITIONABLE).GetBoundingRadius">POSITIONABLE: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>
|
||||
@@ -1693,13 +1693,13 @@ The method <a href="##(POSITIONABLE).GetVelocity">POSITIONABLE.GetVelocity</a>()
|
||||
<tr class="w3-border">
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(POSITIONABLE).GetCoord">POSITIONABLE: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="##(POSITIONABLE).GetCoordinate">POSITIONABLE: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">
|
||||
@@ -1823,7 +1823,7 @@ The method <a href="##(POSITIONABLE).GetVelocity">POSITIONABLE.GetVelocity</a>()
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="w3-border">
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(POSITIONABLE).GetRelativeVelocity">POSITIONABLE:GetRelativeVelocity(positionable)</a></p></td>
|
||||
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(POSITIONABLE).GetRelativeVelocity">POSITIONABLE: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>
|
||||
@@ -3517,6 +3517,17 @@ When Moose is loaded statically, (as one file), tracing is switched off by defau
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<div class="w3-card-2 w3-padding-small w3-margin-top">
|
||||
|
||||
<a href="Core.Spot.html##(SPOT)">Core.Spot#SPOT</a>
|
||||
<a id="#(POSITIONABLE).Spot" ><strong>POSITIONABLE.Spot</strong></a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -3966,7 +3977,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="#(POSITIONABLE).GetBoundingRadius" ><strong>POSITIONABLE:GetBoundingRadius(mindist)</strong></a></h2>
|
||||
<h2><a id="#(POSITIONABLE).GetBoundingRadius" ><strong>POSITIONABLE:GetBoundingRadius(MinDist)</strong></a></h2>
|
||||
</div>
|
||||
|
||||
<p>Get the bounding radius of the underlying POSITIONABLE DCS Object.</p>
|
||||
@@ -3982,12 +3993,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>
|
||||
@@ -4119,10 +4130,13 @@ Ship:Destroy( false ) -- Don't generate an event upon destruction.
|
||||
<h2><a id="#(POSITIONABLE).GetCoord" ><strong>POSITIONABLE: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">
|
||||
@@ -4137,8 +4151,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>
|
||||
@@ -4153,7 +4166,7 @@ TODO: Seems to have been introduced with Airboss. Should it be renamed to better
|
||||
<h2><a id="#(POSITIONABLE).GetCoordinate" ><strong>POSITIONABLE: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">
|
||||
@@ -4168,7 +4181,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>
|
||||
@@ -5101,7 +5114,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="#(POSITIONABLE).GetRelativeVelocity" ><strong>POSITIONABLE:GetRelativeVelocity(positionable)</strong></a></h2>
|
||||
<h2><a id="#(POSITIONABLE).GetRelativeVelocity" ><strong>POSITIONABLE:GetRelativeVelocity(Positionable)</strong></a></h2>
|
||||
</div>
|
||||
|
||||
<p>Get relative velocity with respect to another POSITIONABLE.</p>
|
||||
@@ -5117,7 +5130,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">
|
||||
@@ -7077,6 +7090,17 @@ Coordinates are dependent on the position of the maps origin.</p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<div class="w3-card-2 w3-padding-small w3-margin-top">
|
||||
|
||||
<a href="Core.Spot.html##(SPOT)">Core.Spot#SPOT</a>
|
||||
<a id="#(POSITIONABLE).Spot" ><strong>POSITIONABLE.Spot</strong></a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -7654,6 +7678,17 @@ If the Identifiable is alive, true is returned. </p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<div class="w3-card-2 w3-padding-small w3-margin-top">
|
||||
|
||||
<a href="Core.Spot.html##(SPOT)">Core.Spot#SPOT</a>
|
||||
<a id="#(POSITIONABLE).Spot" ><strong>POSITIONABLE.Spot</strong></a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
@@ -7837,6 +7872,17 @@ If the Identifiable is alive, true is returned. </p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div>
|
||||
<div class="w3-card-2 w3-padding-small w3-margin-top">
|
||||
|
||||
<a href="Core.Spot.html##(SPOT)">Core.Spot#SPOT</a>
|
||||
<a id="#(POSITIONABLE).Spot" ><strong>POSITIONABLE.Spot</strong></a>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user