rm -rf unused imports

This commit is contained in:
Sijmen 2021-06-07 01:39:08 +02:00
parent 4a56bc5a24
commit 5d7101ae0b
Signed by: vijfhoek
GPG key ID: 82D05C89B28B0DAE
3 changed files with 2 additions and 7 deletions

View file

@ -1,7 +1,4 @@
use std::ops::Sub; use cgmath::Point3;
use cgmath::{Point3, Vector3};
use itertools::Itertools;
type T = f32; type T = f32;

View file

@ -1,7 +1,5 @@
use cgmath::{Matrix4, Point3, Rad, Vector3}; use cgmath::{Matrix4, Point3, Rad, Vector3};
use crate::aabb::Aabb;
#[rustfmt::skip] #[rustfmt::skip]
pub const OPENGL_TO_WGPU_MATRIX: Matrix4<f32> = Matrix4::new( pub const OPENGL_TO_WGPU_MATRIX: Matrix4<f32> = Matrix4::new(
1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0,

View file

@ -1,6 +1,6 @@
use std::time::Duration; use std::time::Duration;
use cgmath::{ElementWise, InnerSpace, Point3, Rad, Vector3}; use cgmath::{InnerSpace, Point3, Rad, Vector3};
use wgpu::{ use wgpu::{
util::{BufferInitDescriptor, DeviceExt}, util::{BufferInitDescriptor, DeviceExt},
CommandEncoder, SwapChainTexture, CommandEncoder, SwapChainTexture,