mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2025-10-29 16:58:06 +00:00
Reduction of moose.lua sizing working now!
This commit is contained in:
@@ -346,6 +346,18 @@
|
||||
<td class="name" nowrap="nowrap"><a href="##(COORDINATE).IlluminationBomb">COORDINATE:IlluminationBomb()</a></td>
|
||||
<td class="summary">
|
||||
<p>Creates an illumination bomb at the point.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name" nowrap="nowrap"><a href="##(COORDINATE).IsInRadius">COORDINATE:IsInRadius(ToCoordinate, Radius, Coordinate)</a></td>
|
||||
<td class="summary">
|
||||
<p>Returns if a Coordinate is in a certain Radius of this Coordinate in 2D plane using the X and Z axis.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="name" nowrap="nowrap"><a href="##(COORDINATE).IsInSphere">COORDINATE:IsInSphere(ToCoordinate, Radius, Coordinate)</a></td>
|
||||
<td class="summary">
|
||||
<p>Returns if a Coordinate is in a certain radius of this Coordinate in 3D space using the X, Y and Z axis.</p>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -1901,6 +1913,85 @@ Velocity text.</p>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<a id="#(COORDINATE).IsInRadius" >
|
||||
<strong>COORDINATE:IsInRadius(ToCoordinate, Radius, Coordinate)</strong>
|
||||
</a>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
<p>Returns if a Coordinate is in a certain Radius of this Coordinate in 2D plane using the X and Z axis.</p>
|
||||
|
||||
<h3>Parameters</h3>
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
<p><code><em><a href="##(COORDINATE)">#COORDINATE</a> ToCoordinate </em></code>:
|
||||
The coordinate that will be tested if it is in the radius of this coordinate.</p>
|
||||
|
||||
</li>
|
||||
<li>
|
||||
|
||||
<p><code><em>#number Radius </em></code>:
|
||||
The radius of the circle on the 2D plane around this coordinate.</p>
|
||||
|
||||
</li>
|
||||
<li>
|
||||
|
||||
<p><code><em> Coordinate </em></code>: </p>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
<h3>Return value</h3>
|
||||
|
||||
<p><em>#boolean:</em>
|
||||
true if in the Radius.</p>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<a id="#(COORDINATE).IsInSphere" >
|
||||
<strong>COORDINATE:IsInSphere(ToCoordinate, Radius, Coordinate)</strong>
|
||||
</a>
|
||||
</dt>
|
||||
<dd>
|
||||
|
||||
<p>Returns if a Coordinate is in a certain radius of this Coordinate in 3D space using the X, Y and Z axis.</p>
|
||||
|
||||
|
||||
<p>So Radius defines the radius of the a Sphere in 3D space around this coordinate.</p>
|
||||
|
||||
<h3>Parameters</h3>
|
||||
<ul>
|
||||
<li>
|
||||
|
||||
<p><code><em><a href="##(COORDINATE)">#COORDINATE</a> ToCoordinate </em></code>:
|
||||
The coordinate that will be tested if it is in the radius of this coordinate.</p>
|
||||
|
||||
</li>
|
||||
<li>
|
||||
|
||||
<p><code><em>#number Radius </em></code>:
|
||||
The radius of the sphere in the 3D space around this coordinate.</p>
|
||||
|
||||
</li>
|
||||
<li>
|
||||
|
||||
<p><code><em> Coordinate </em></code>: </p>
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
<h3>Return value</h3>
|
||||
|
||||
<p><em>#boolean:</em>
|
||||
true if in the Sphere.</p>
|
||||
|
||||
</dd>
|
||||
</dl>
|
||||
<dl class="function">
|
||||
<dt>
|
||||
|
||||
<a id="#(COORDINATE).IsLOS" >
|
||||
<strong>COORDINATE:IsLOS(ToCoordinate)</strong>
|
||||
</a>
|
||||
|
||||
Reference in New Issue
Block a user