summaryrefslogtreecommitdiffstats
path: root/vex
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2022-06-22 17:01:22 -0400
committerJon Santmyer <jon@jonsantmyer.com>2022-06-22 17:01:22 -0400
commit345fefb339d8c2a357ea596fdda3629eff705fe1 (patch)
tree2074355aa814db351617ef9afd99f257799b8b65 /vex
parent3d16356ccc4b3cb8d2089507aa2a4459fe0dfa4d (diff)
downloadwebsite-345fefb339d8c2a357ea596fdda3629eff705fe1.tar.gz
website-345fefb339d8c2a357ea596fdda3629eff705fe1.tar.bz2
website-345fefb339d8c2a357ea596fdda3629eff705fe1.zip
More respectful language
Diffstat (limited to 'vex')
-rw-r--r--vex/index.html33
1 files changed, 33 insertions, 0 deletions
diff --git a/vex/index.html b/vex/index.html
new file mode 100644
index 0000000..bb9a205
--- /dev/null
+++ b/vex/index.html
@@ -0,0 +1,33 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Vex (Multi-Dimension Vectors)</title>
+
+ <link rel="stylesheet" href="/style.css">
+</head>
+<body>
+ <div class="page-body-border"><div class="page-body">
+ <h1 class="page-body-top">Multi-Dimension Vectors</h1>
+ <div class="page-body-content">
+ <table class="page-body-buttons" style="width: 20%; margin: 0px;">
+ <tr><td><div class="link-button-border"><a class="link-button" href="/">Home</a></div></td></tr>
+ <tr><td><div class="link-button-border"><a class="link-button" href="https://git.jonsantmyer.com/vex/">Git repository</a></div></td></tr>
+ <tr><td><div class="link-button-border"><a class="link-button" href="https://git.jonsantmyer.com/vex/plain/vex.hpp">Download (vex.hpp)</a></div></td></tr>
+ </table>
+ <h3>Purpose</h3>
+ <p>
+ vex was designed to be a single header drop in for handling object positions. Therefore, the logic and structures are contained in a single C++ header file.
+ </p>
+ <h3>Design</h3>
+ <p>
+ vectors of any dimension can be created by creating a class 'vec_dimd&ltT,D&gt' where T is a floating point or integral type, and D is an unsigned number greater than 1.
+ </p><p>
+ There are two pre-defined vector types, vec2 and vec3, which can be defined using the same type restrictions stated above.
+ </p>
+ </div>
+ <p class="text-inset">
+ LICENSE: MIT (c) 2022 Jon Santmyer (jon@jonsantmyer.com)
+ </p>
+ </div>
+</body>
+</html>