Files
sfall/math/index.html
T

15 lines
26 KiB
HTML
Raw Normal View History

2026-04-01 14:29:07 +00:00
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <link rel="stylesheet" href="/sfall/assets/css/just-the-docs-default.css"> <link rel="stylesheet" href="/sfall/assets/css/just-the-docs-head-nav.css" id="jtd-head-nav-stylesheet"> <style id="jtd-nav-activation"> .site-nav > ul.nav-list:first-child > li > a, .site-nav > ul.nav-list:first-child > li > ul > li:not(:nth-child(1)) > a, .site-nav > ul.nav-list:first-child > li > ul > li > ul > li a { background-image: none; } .site-nav > ul.nav-list:not(:first-child) a, .site-nav li.external a { background-image: none; } .site-nav > ul.nav-list:first-child > li:nth-child(31) > ul > li:nth-child(1) > a { font-weight: 600; text-decoration: none; }.site-nav > ul.nav-list:first-child > li:nth-child(31) > button svg, .site-nav > ul.nav-list:first-child > li:nth-child(31) > ul > li:nth-child(1) > button svg { transform: rotate(-90deg); }.site-nav > ul.nav-list:first-child > li.nav-list-item:nth-child(31) > ul.nav-list, .site-nav > ul.nav-list:first-child > li.nav-list-item:nth-child(31) > ul.nav-list > li.nav-list-item:nth-child(1) > ul.nav-list { display: block; } </style> <script src="/sfall/assets/js/vendor/lunr.min.js"></script> <script src="/sfall/assets/js/just-the-docs.js"></script> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" href="/sfall/favicon.ico" type="image/x-icon"> <!-- Begin Jekyll SEO tag v2.8.0 --> <title>Math | sfall</title> <meta name="generator" content="Jekyll v3.9.2" /> <meta property="og:title" content="Math" /> <meta property="og:locale" content="en_US" /> <meta name="description" content="Sfall documentation" /> <meta property="og:description" content="Sfall documentation" /> <link rel="canonical" href="/sfall/math/" /> <meta property="og:url" content="/sfall/math/" /> <meta property="og:site_name" content="sfall" /> <meta property="og:type" content="website" /> <meta name="twitter:card" content="summary" /> <meta property="twitter:title" content="Math" /> <script type="application/ld+json"> {"@context":"https://schema.org","@type":"WebPage","description":"Sfall documentation","headline":"Math","url":"/sfall/math/"}</script> <!-- End Jekyll SEO tag --> <link rel="apple-touch-icon" sizes="180x180" href="/assets/favicon/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon/favicon-16x16.png"> <link rel="manifest" href="/assets/favicon/site.webmanifest"> <link rel="mask-icon" href="/assets/favicon/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#da532c"> <meta name="msapplication-config" content="/assets/favicon/browserconfig.xml"> <meta name="theme-color" content="#ffffff"> </head> <body> <a class="skip-to-main" href="#main-content">Skip to main content</a> <svg xmlns="http://www.w3.org/2000/svg" class="d-none"> <symbol id="svg-link" viewBox="0 0 24 24"> <title>Link</title> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-link"> <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path> </svg> </symbol> <symbol id="svg-menu" viewBox="0 0 24 24"> <title>Menu</title> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"> <line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line> </svg> </symbol> <symbol id="svg-arrow-right" viewBox="0 0 24 24"> <title>Expand</title> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="roun
2022-04-07 13:19:56 +00:00
</code></pre></div></div> <p>Exponentiation. Use as any other arithmetic operator, like <code class="language-plaintext highlighter-rouge">5^(1/3)</code>. If exponent is an integer, you can use a negative base, otherwise you will get “NaN” with a negative base. If both arguments are integers, the result will be an integer.</p><hr /> <h3 id="abs"> <a href="#abs" class="anchor-heading" aria-labelledby="abs"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>abs</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">int</span><span class="o">/</span><span class="kt">float</span> <span class="n">abs</span><span class="p">(</span><span class="kt">int</span><span class="o">/</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
2021-06-01 04:05:32 +00:00
</code></pre></div></div> <p>Absolute (positive) value of x.</p><hr /> <h3 id="arctan"> <a href="#arctan" class="anchor-heading" aria-labelledby="arctan"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>arctan</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">float</span> <span class="n">arctan</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">,</span> <span class="kt">float</span> <span class="n">y</span><span class="p">)</span>
2022-05-30 13:00:21 +00:00
</code></pre></div></div> <p>Arctangent of x. Pass 1 as y (dont ask…).</p><hr /> <h3 id="ceil"> <a href="#ceil" class="anchor-heading" aria-labelledby="ceil"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>ceil</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">int</span> <span class="n">ceil</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
2021-06-01 04:05:32 +00:00
</code></pre></div></div> <p>Round x to the nearest integer that is not less than x.</p><hr /> <h3 id="cos"> <a href="#cos" class="anchor-heading" aria-labelledby="cos"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>cos</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">float</span> <span class="n">cos</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
</code></pre></div></div> <p>Cosine of x</p><hr /> <h3 id="div"> <a href="#div" class="anchor-heading" aria-labelledby="div"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>div</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="n">div</span><span class="p">(</span><span class="n">x</span><span class="p">,</span> <span class="n">y</span><span class="p">)</span>
2022-04-07 13:19:56 +00:00
</code></pre></div></div> <p>Unsigned integer division. Use as a division operator, like <code class="language-plaintext highlighter-rouge">3 + (20 div 5)</code>. If both dividend and divisor are integers, they will be treated as unsigned integers. If one of them is a float, div will perform the signed division just like vanilla division operator.</p><hr /> <h3 id="exponent"> <a href="#exponent" class="anchor-heading" aria-labelledby="exponent"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>exponent</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">float</span> <span class="n">exponent</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
2021-06-01 04:05:32 +00:00
</code></pre></div></div> <p>E^X</p><hr /> <h3 class="d-inline-block" id="floor2"> <a href="#floor2" class="anchor-heading" aria-labelledby="floor2"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>floor2</strong> </h3> <p class="label label-green">sfall.h</p> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">int</span> <span class="n">floor2</span><span class="p">(</span><span class="kt">int</span><span class="o">/</span><span class="kt">float</span> <span class="n">value</span><span class="p">)</span>
</code></pre></div></div> <p>Works just like vanilla floor function, but returns correct integers for negative floats.</p> <ul> <li><strong>NOTE:</strong> vanilla <code class="language-plaintext highlighter-rouge">floor</code> function works exactly the same as <code class="language-plaintext highlighter-rouge">ceil</code> for negative floats (i.e. basically <code class="language-plaintext highlighter-rouge">trunc</code> in C/C++).</li> </ul><hr /> <h3 id="log"> <a href="#log" class="anchor-heading" aria-labelledby="log"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>log</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">float</span> <span class="n">log</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
2021-06-01 04:05:32 +00:00
</code></pre></div></div> <p>Natural logarithm of x.</p><hr /> <h3 id="round"> <a href="#round" class="anchor-heading" aria-labelledby="round"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>round</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">int</span> <span class="n">round</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
</code></pre></div></div> <p>Round x to the nearest integer.</p><hr /> <h3 id="sin"> <a href="#sin" class="anchor-heading" aria-labelledby="sin"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>sin</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">float</span> <span class="n">sin</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
</code></pre></div></div> <p>Sine of x</p><hr /> <h3 id="sqrt"> <a href="#sqrt" class="anchor-heading" aria-labelledby="sqrt"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>sqrt</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">float</span> <span class="n">sqrt</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
</code></pre></div></div> <p>Square root of x.</p><hr /> <h3 id="tan"> <a href="#tan" class="anchor-heading" aria-labelledby="tan"><svg viewBox="0 0 16 16" aria-hidden="true"><use xlink:href="#svg-link"></use></svg></a> <strong>tan</strong> </h3> <div class="language-c++ highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="kt">float</span> <span class="n">tan</span><span class="p">(</span><span class="kt">float</span> <span class="n">x</span><span class="p">)</span>
2026-01-27 07:17:52 +00:00
</code></pre></div></div> <p>Tangent of x</p> </main> <hr> <footer> <div class="d-md-none mt-4 fs-2"> This site uses <a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll. </div> </footer> </div> </div> <div class="search-overlay"></div> </div> </body> </html>