summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-12-10 19:12:31 -0600
committersanine <sanine.not@pm.me>2022-12-10 19:12:31 -0600
commit7c47f23ee92afa07c748700f1de22fd8b8ccf967 (patch)
tree4387add23b932b74c237128c579c4c2c9005262a /include
parent8bc49efb970ac44f17f6076bb16f1d0e712bd750 (diff)
refactor: remove node.* and util.* and move 3rdparty libs into separate directory
Diffstat (limited to 'include')
-rw-r--r--include/kalmia.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/include/kalmia.h b/include/kalmia.h
index 73d5df3..31aff1e 100644
--- a/include/kalmia.h
+++ b/include/kalmia.h
@@ -1,4 +1,4 @@
-/****************************************************************
+/***************************************************************
*
* ======== kalmia ========
*
@@ -62,13 +62,5 @@
/* format data structures */
typedef double ka_matrix_t[16];
-typedef struct ka_node_t {
- ka_matrix_t transform;
-} ka_node_t;
-
-typedef struct kalmia_t {
- size_t n_nodes, n_nodes_max;
- ka_node_t *node;
-} kalmia_t;
#endif