Reduction of moose.lua sizing working now!

This commit is contained in:
FlightControl_Master
2017-09-26 18:47:33 +02:00
parent 11067d4bfd
commit 5558c26db7
160 changed files with 36080 additions and 229 deletions

View File

@@ -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>