summaryrefslogtreecommitdiff
path: root/libs/assimp/port/assimp_rs/src/structs/plane
diff options
context:
space:
mode:
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
- }
- }
-}