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,6 +1,6 @@
use super::super::core::LinearColor;
use super::super::Point2D;
use super::Texture;
use crate::core::LinearColor;
use crate::Point2D;
/// A texture with the same color on all points.
#[derive(Debug, PartialEq)]