summaryrefslogtreecommitdiffstats
path: root/vendor/windows-sys-0.28.0/src/Windows/Foundation/Numerics/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/windows-sys-0.28.0/src/Windows/Foundation/Numerics/mod.rs')
-rw-r--r--vendor/windows-sys-0.28.0/src/Windows/Foundation/Numerics/mod.rs114
1 files changed, 0 insertions, 114 deletions
diff --git a/vendor/windows-sys-0.28.0/src/Windows/Foundation/Numerics/mod.rs b/vendor/windows-sys-0.28.0/src/Windows/Foundation/Numerics/mod.rs
deleted file mode 100644
index 5800d20bd..000000000
--- a/vendor/windows-sys-0.28.0/src/Windows/Foundation/Numerics/mod.rs
+++ /dev/null
@@ -1,114 +0,0 @@
-#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, clashing_extern_declarations, clippy::all)]
-#[link(name = "windows")]
-extern "system" {}
-#[repr(C)]
-pub struct Matrix3x2 {
- pub M11: f32,
- pub M12: f32,
- pub M21: f32,
- pub M22: f32,
- pub M31: f32,
- pub M32: f32,
-}
-impl ::core::marker::Copy for Matrix3x2 {}
-impl ::core::clone::Clone for Matrix3x2 {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct Matrix4x4 {
- pub M11: f32,
- pub M12: f32,
- pub M13: f32,
- pub M14: f32,
- pub M21: f32,
- pub M22: f32,
- pub M23: f32,
- pub M24: f32,
- pub M31: f32,
- pub M32: f32,
- pub M33: f32,
- pub M34: f32,
- pub M41: f32,
- pub M42: f32,
- pub M43: f32,
- pub M44: f32,
-}
-impl ::core::marker::Copy for Matrix4x4 {}
-impl ::core::clone::Clone for Matrix4x4 {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct Plane {
- pub Normal: Vector3,
- pub D: f32,
-}
-impl ::core::marker::Copy for Plane {}
-impl ::core::clone::Clone for Plane {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct Quaternion {
- pub X: f32,
- pub Y: f32,
- pub Z: f32,
- pub W: f32,
-}
-impl ::core::marker::Copy for Quaternion {}
-impl ::core::clone::Clone for Quaternion {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct Rational {
- pub Numerator: u32,
- pub Denominator: u32,
-}
-impl ::core::marker::Copy for Rational {}
-impl ::core::clone::Clone for Rational {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct Vector2 {
- pub X: f32,
- pub Y: f32,
-}
-impl ::core::marker::Copy for Vector2 {}
-impl ::core::clone::Clone for Vector2 {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct Vector3 {
- pub X: f32,
- pub Y: f32,
- pub Z: f32,
-}
-impl ::core::marker::Copy for Vector3 {}
-impl ::core::clone::Clone for Vector3 {
- fn clone(&self) -> Self {
- *self
- }
-}
-#[repr(C)]
-pub struct Vector4 {
- pub X: f32,
- pub Y: f32,
- pub Z: f32,
- pub W: f32,
-}
-impl ::core::marker::Copy for Vector4 {}
-impl ::core::clone::Clone for Vector4 {
- fn clone(&self) -> Self {
- *self
- }
-}