summaryrefslogtreecommitdiff
path: root/demo/Primitives.lua
diff options
context:
space:
mode:
Diffstat (limited to 'demo/Primitives.lua')
-rw-r--r--demo/Primitives.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/demo/Primitives.lua b/demo/Primitives.lua
new file mode 100644
index 0000000..09142a5
--- /dev/null
+++ b/demo/Primitives.lua
@@ -0,0 +1,20 @@
+local Primitives = {}
+
+function Primitives.plane(width, height)
+ return honey.buildMesh{ position = { 0, 0, 0,
+ width, 0, 0,
+ 0, height, 0,
+ width, height, 0 },
+ normal = { 0, 0, 1,
+ 0, 0, 1,
+ 0, 0, 1,
+ 0, 0, 1 },
+ uv = { 0, 0,
+ 1, 0,
+ 0, 1,
+ 1, 1 },
+ faces = { 1, 2, 3,
+ 4, 2, 1 } }
+end
+
+return Primitives