Auto commit by GitHub Actions Workflow

This commit is contained in:
MooseBotter
2025-07-25 13:01:18 +00:00
parent aa5ecdeb25
commit aaa147ea26
29 changed files with 1019 additions and 579 deletions

View File

@@ -2285,6 +2285,12 @@
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(UTILS).FileExists">UTILS.FileExists(file)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Checks if a file exists or not.</p>
</td>
</tr>
<tr class="w3-border">
<td class="name w3-half w3-container" style="word-wrap: break-word"><p><a href="##(UTILS).FindNearestPointOnCircle">UTILS.FindNearestPointOnCircle(Vec1, Radius, Vec2)</a></p></td>
<td class="summary w3-half w3-container" style="word-wrap: break-word">
<p>Find the point on the radius of a circle closest to a point outside of the radius.</p>
</td>
</tr>
<tr class="w3-border">
@@ -4876,6 +4882,76 @@ use negative idp for rounding ahead of decimal place, positive for rounding afte
</div>
</div>
</div>
</div>
<div class="w3-card-2 w3-padding-small w3-margin-top">
<div class="w3-theme-l2">
<h2><a id="#(UTILS).FindNearestPointOnCircle" ><strong>UTILS.FindNearestPointOnCircle(Vec1, Radius, Vec2)</strong></a></h2>
</div>
<p>Find the point on the radius of a circle closest to a point outside of the radius.</p>
<div id= "#Functions##FindNearestPointOnCircle" 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>UTILS</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>
<a href="DCS.html##(Vec2)">DCS#Vec2</a>
<strong><strong>Vec1</strong></strong>
</p>
</div>
<div class="w3-half">
<p>Simple Vec2 marking the middle of the circle.</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>The radius of the circle.</p>
</div>
</div>
<div class="w3-row w3-margin-left w3-border-bottom w3-border-l2">
<div class="w3-half">
<p>
<a href="DCS.html##(Vec2)">DCS#Vec2</a>
<strong><strong>Vec2</strong></strong>
</p>
</div>
<div class="w3-half">
<p>Simple Vec2 marking the point outside of the circle.</p>
</div>
</div>
<h2><strong>Return value:</strong></h2>
<div class="w3-row w3-border-bottom w3-margin-left">
<div class="w3-half">
<p><a href="DCS.html##(Vec2)">DCS#Vec2</a>:</p>
</div>
<div class="w3-half">
<p>Vec2 point on the radius.</p>
</div>
</div>
</div>
</div>
</div>