summaryrefslogtreecommitdiffhomepage
path: root/cheatsheet/cheatsheet.html
diff options
context:
space:
mode:
Diffstat (limited to 'cheatsheet/cheatsheet.html')
-rw-r--r--cheatsheet/cheatsheet.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/cheatsheet/cheatsheet.html b/cheatsheet/cheatsheet.html
index b24d415..e16d8cf 100644
--- a/cheatsheet/cheatsheet.html
+++ b/cheatsheet/cheatsheet.html
@@ -56,6 +56,7 @@
#audio pre code{border:10px solid; border-color:#d3b157; background-color:#e5d7ae; }
#structs pre code{border:10px solid; border-color:#d2c9c6; background-color:#f8f8ff;}
#colors pre code{border:10px solid; border-color:#c6d2c6; background-color:#e9f1f2;}
+ #math pre code{border:10px solid; border-color:#c170ff; background-color:#deb3ff; }
#logo{width:128px; height:128px; float:left; position:relative; background-image:url(../common/img/raylib_logo.png);}
#header{position:relative; height:110px; width: 1000px;}
#title, #plinks, #version{position:relative; float:left; margin:0px; margin-left:10px; margin-top:10px;}
@@ -71,6 +72,7 @@
#paudio{margin-bottom:-12px; margin-left:12px; color:#8c7539;}
#pstructs{margin-bottom:-12px; margin-left:12px; color:#bcbccd;}
#pcolors{margin-bottom:-12px; margin-left:12px; color:#bcbccd;}
+ #pmath{margin-bottom:-12px; margin-left:12px; color:#9d1cff;}
#fullgroup{
display: grid;
@@ -119,6 +121,10 @@
$('#structs pre code').text(data);
$('#structs pre code').each(function(i, e) {hljs.highlightBlock(e)});
}, 'text');
+ $.get('raylib_math.c', function(data) {
+ $('#math pre code').text(data);
+ $('#math pre code').each(function(i, e) {hljs.highlightBlock(e)});
+ }, 'text');
});
</script>
</head>
@@ -156,6 +162,8 @@
<div id="colors"><pre><code class="cpp"></code></pre></div>
</div>
</div>
+ <p id="pmath">module: rmath</p>
+ <div id="math"><pre><code class="cpp"></code></pre></div>
<div id="copyright">
<p>raylib quick reference card - Copyright (c) 2013-2022 Ramon Santamaria (<a href="https://www.twitter.com/raysan5">@raysan5</a>)</p>
</div>