library: replace super::super by crate import

Done with the following shell command:
`sed -e 's/super::super/crate/' -i $(git grep -l super::super)`.

Followed by a `cargo fmt --all`.
This commit is contained in:
Bruno BELANYI 2020-03-17 20:30:50 +01:00
parent 4f3af74c22
commit 7112873715
11 changed files with 19 additions and 19 deletions

View file

@ -1,5 +1,5 @@
use super::super::{Point, Vector};
use super::film::Film;
use crate::{Point, Vector};
/// Represent an abstract camera to observe the scene.
#[derive(Debug, PartialEq)]

View file

@ -1,4 +1,4 @@
use super::super::{Point, Vector};
use crate::{Point, Vector};
/// Represent an abstract camera film, to know where each pixel is in space.
#[derive(Debug, PartialEq)]