Skip to content

Commit c99eeff

Browse files
authoredMar 19, 2025
Merge pull request #152 from jordanbrown0/main
Binary arithmetic.
2 parents 2942f98 + 017f7ae commit c99eeff

File tree

1 file changed

+27
-15
lines changed

1 file changed

+27
-15
lines changed
 

‎cheatsheet/snapshot.html

+27-15
Original file line numberDiff line numberDiff line change
@@ -36,26 +36,38 @@ <h2>Constants</h2>
3636
<dd>undefined value</dd>
3737
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/General#Numbers">PI</a></code></dt>
3838
<dd>mathematical constant <a href="https://en.wikipedia.org/wiki/Pi">&pi;</a> (~3.14159)</dd>
39+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/General#Numbers">0xHHH&hellip;</a></code></dt>
40+
<dd>Hexadecimal number</dd>
3941
</dl>
4042
</article>
4143
<article>
4244
<h2>Operators</h2>
4345
<dl>
44-
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_Arithmetical_Operators">n + m</a></code></dt><dd>Addition</dd>
45-
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_Arithmetical_Operators">n - m</a></code></dt><dd>Subtraction</dd>
46-
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_Arithmetical_Operators">n * m</a></code></dt><dd>Multiplication</dd>
47-
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_Arithmetical_Operators">n / m</a></code></dt><dd>Division</dd>
48-
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_Arithmetical_Operators">n % m</a></code></dt><dd>Modulo</dd>
49-
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_Arithmetical_Operators">n ^ m</a></code></dt><dd>Exponentiation</dd>
50-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_Operators">n < m</a></code></dt><dd>Less Than</dd>
51-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_Operators">n <= m</a></code></dt><dd>Less or Equal</dd>
52-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_Operators">b == c</a></code></dt><dd>Equal</dd>
53-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_Operators">b != c</a></code></dt><dd>Not Equal</dd>
54-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_Operators">n >= m</a></code></dt><dd>Greater or Equal</dd>
55-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_Operators">n > m</a></code></dt><dd>Greater Than</dd>
56-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Logical_Operators">b && c</a></code></dt> <dd>Logical And</dd>
57-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Logical_Operators">b || c</a></code></dt> <dd>Logical Or</dd>
58-
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Logical_Operators">!b</a></code></dt> <dd>Negation</dd>
46+
<!-- Scalar -->
47+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_arithmetic_operators">n + m</a></code></dt><dd>Addition</dd>
48+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_arithmetic_operators">n - m</a></code></dt><dd>Subtraction</dd>
49+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_arithmetic_operators">n * m</a></code></dt><dd>Multiplication</dd>
50+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_arithmetic_operators">n / m</a></code></dt><dd>Division</dd>
51+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_arithmetic_operators">n % m</a></code></dt><dd>Modulo</dd>
52+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_arithmetic_operators">n ^ m</a></code></dt><dd>Exponentiation</dd>
53+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Scalar_arithmetic_operators">- n</a></code></dt><dd>Negation</dd>
54+
<!-- Binary -->
55+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Binary_arithmetic">n | m</a></code></dt><dd>Binary Or</dd>
56+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Binary_arithmetic">n &amp; m</a></code></dt><dd>Binary And</dd>
57+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Binary_arithmetic">n &lt;&lt; m</a></code></dt><dd>Left shift</dd>
58+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Binary_arithmetic">n &gt;&gt; m</a></code></dt><dd>Right shift (sign preserving)</dd>
59+
<dt><code><a href="https://en.wikibooks.org/w/index.php?title=OpenSCAD_User_Manual/Mathematical_Operators#Binary_arithmetic">~ n</a></code></dt><dd>Binary Not</dd>
60+
<!-- Relational -->
61+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_operators">n < m</a></code></dt><dd>Less Than</dd>
62+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_operators">n <= m</a></code></dt><dd>Less or Equal</dd>
63+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_operators">b == c</a></code></dt><dd>Equal</dd>
64+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_operators">b != c</a></code></dt><dd>Not Equal</dd>
65+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_operators">n >= m</a></code></dt><dd>Greater or Equal</dd>
66+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Relational_operators">n > m</a></code></dt><dd>Greater Than</dd>
67+
<!-- Logical -->
68+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Logical_operators">b && c</a></code></dt> <dd>Logical And</dd>
69+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Logical_operators">b || c</a></code></dt> <dd>Logical Or</dd>
70+
<dt><code><a href="https://en.wikibooks.org/wiki/OpenSCAD_User_Manual/Mathematical_Operators#Logical_operators">! b</a></code></dt> <dd>Logical Negation</dd>
5971
</dl>
6072
</article>
6173
<article>

0 commit comments

Comments
 (0)