diff options
author | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2023-02-12 23:53:22 -0600 |
commit | f1fe73d1909a2448a004a88362a1a532d0d4f7c3 (patch) | |
tree | ab37ae3837e2f858de2932bcee9f26e69fab3db1 /libs/assimp/port/assimp_rs/src/structs/plane | |
parent | f567ea1e2798fd3156a416e61f083ea3e6b95719 (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.rs | 2 | ||||
-rw-r--r-- | libs/assimp/port/assimp_rs/src/structs/plane/plane.rs | 23 |
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 - } - } -} |