rm -rf unused imports
This commit is contained in:
parent
4a56bc5a24
commit
5d7101ae0b
3 changed files with 2 additions and 7 deletions
|
@ -1,7 +1,4 @@
|
||||||
use std::ops::Sub;
|
use cgmath::Point3;
|
||||||
|
|
||||||
use cgmath::{Point3, Vector3};
|
|
||||||
use itertools::Itertools;
|
|
||||||
|
|
||||||
type T = f32;
|
type T = f32;
|
||||||
|
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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,
|
||||||
|
|
Loading…
Reference in a new issue