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:
parent
4f3af74c22
commit
7112873715
11 changed files with 19 additions and 19 deletions
|
|
@ -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)]
|
||||
|
|
|
|||
|
|
@ -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)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue