summaryrefslogtreecommitdiff
path: root/libs/assimp/port/assimp_rs/src/structs/plane
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-02-12 23:53:22 -0600
committersanine <sanine.not@pm.me>2023-02-12 23:53:22 -0600
commitf1fe73d1909a2448a004a88362a1a532d0d4f7c3 (patch)
treeab37ae3837e2f858de2932bcee9f26e69fab3db1 /libs/assimp/port/assimp_rs/src/structs/plane
parentf567ea1e2798fd3156a416e61f083ea3e6b95719 (diff)
switch to tinyobj and nanovg from assimp and cairo
Diffstat (limited to 'libs/assimp/port/assimp_rs/src/structs/plane')
-rw-r--r--libs/assimp/port/assimp_rs/src/structs/plane/mod.rs2
-rw-r--r--libs/assimp/port/assimp_rs/src/structs/plane/plane.rs23
2 files changed, 0 insertions, 25 deletions
diff --git a/libs/assimp/port/assimp_rs/src/structs/plane/mod.rs b/libs/assimp/port/assimp_rs/src/structs/plane/mod.rs
deleted file mode 100644
index c73a8ed..0000000
--- a/libs/assimp/port/assimp_rs/src/structs/plane/mod.rs
+++ /dev/null
@@ -1,2 +0,0 @@
-mod plane;
-
diff --git a/libs/assimp/port/assimp_rs/src/structs/plane/plane.rs b/libs/assimp/port/assimp_rs/src/structs/plane/plane.rs
deleted file mode 100644
index 2b0b744..0000000
--- a/libs/assimp/port/assimp_rs/src/structs/plane/plane.rs
+++ /dev/null
@@ -1,23 +0,0 @@
-#[derive(Clone, Debug, Copy)]
-struct Plane {
- a: f32,
- b: f32,
- c: f32,
- d: f32
-}
-
-impl Plane {
- pub fn new(
- a_f32: f32,
- b_f32: f32,
- c_f32: f32,
- d_f32: f32
- ) -> Plane {
- Plane {
- a: a_f32,
- b: b_f32,
- c: b_f32,
- d: d_f32
- }
- }
-}