From f1fe73d1909a2448a004a88362a1a532d0d4f7c3 Mon Sep 17 00:00:00 2001 From: sanine Date: Sun, 12 Feb 2023 23:53:22 -0600 Subject: switch to tinyobj and nanovg from assimp and cairo --- .../assimp/port/assimp_rs/src/structs/plane/mod.rs | 2 -- .../port/assimp_rs/src/structs/plane/plane.rs | 23 ---------------------- 2 files changed, 25 deletions(-) delete mode 100644 libs/assimp/port/assimp_rs/src/structs/plane/mod.rs delete mode 100644 libs/assimp/port/assimp_rs/src/structs/plane/plane.rs (limited to 'libs/assimp/port/assimp_rs/src/structs/plane') 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 - } - } -} -- cgit v1.2.1