summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorsanine-a <sanine.not@pm.me>2020-05-20 23:03:42 -0500
committersanine-a <sanine.not@pm.me>2020-05-20 23:03:42 -0500
commita09b5a72d365f10e35b012e04b95891abf0b8313 (patch)
tree8c233b15f5592371dde867abc62e31193b442c97 /include
parentc3a41085272644709d891bf04137a6c2bd901230 (diff)
add cube primitive
Diffstat (limited to 'include')
-rw-r--r--include/honey.h1
-rw-r--r--include/mesh.h3
-rw-r--r--include/primitives.h24
3 files changed, 27 insertions, 1 deletions
diff --git a/include/honey.h b/include/honey.h
index 7ae7789..bea21c4 100644
--- a/include/honey.h
+++ b/include/honey.h
@@ -4,6 +4,7 @@
/** @file Defines the basic loading and callback functions. */
#include "common.h"
#include "mesh.h"
+#include "primitives.h"
#include "shader.h"
#include "texture.h"
diff --git a/include/mesh.h b/include/mesh.h
index 2040f44..24aec26 100644
--- a/include/mesh.h
+++ b/include/mesh.h
@@ -1,4 +1,5 @@
-/** @brief Defines the honey_mesh struct and related basic mesh functions. */
+/** @file Defines the honey_mesh struct and related basic mesh functions.
+*/
#ifndef HONEY_MESH_H
#define HONEY_MESH_H
diff --git a/include/primitives.h b/include/primitives.h
new file mode 100644
index 0000000..81dc16f
--- /dev/null
+++ b/include/primitives.h
@@ -0,0 +1,24 @@
+#ifndef HONEY_PRIMITIVES_H
+#define HONEY_PRIMITIVES H
+
+/** @file Define various common primitive objects.
+ */
+
+#include "common.h"
+#include "mesh.h"
+
+/** @brief Create a cube.
+ *
+ * @param[out] mesh Pointer to the destination mesh
+ * @param[in] width Desired width of the cube (x-axis)
+ * @param[in] height Desired height of the cube (y-axis)
+ * @param[in] depth Desired depth of the cube (z-axis)
+ *
+ * @return Success or failure code
+ */
+enum honey_mesh_result honey_mesh_new_cube(honey_mesh* mesh,
+ float width,
+ float height,
+ float depth);
+
+#endif