mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Move util::bezier to style
This commit is contained in:
parent
c929dbe253
commit
09f865919d
4 changed files with 2 additions and 2 deletions
|
@ -3,6 +3,7 @@
|
||||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||||
|
|
||||||
use app_units::Au;
|
use app_units::Au;
|
||||||
|
use bezier::Bezier;
|
||||||
use cssparser::{Color, RGBA};
|
use cssparser::{Color, RGBA};
|
||||||
use dom::{OpaqueNode, TRestyleDamage};
|
use dom::{OpaqueNode, TRestyleDamage};
|
||||||
use euclid::point::Point2D;
|
use euclid::point::Point2D;
|
||||||
|
@ -29,7 +30,6 @@ use std::iter::repeat;
|
||||||
use std::sync::mpsc::Sender;
|
use std::sync::mpsc::Sender;
|
||||||
use std::sync::{Arc, Mutex};
|
use std::sync::{Arc, Mutex};
|
||||||
use time;
|
use time;
|
||||||
use util::bezier::Bezier;
|
|
||||||
use values::CSSFloat;
|
use values::CSSFloat;
|
||||||
use values::computed::{Angle, LengthOrPercentageOrAuto, LengthOrPercentageOrNone};
|
use values::computed::{Angle, LengthOrPercentageOrAuto, LengthOrPercentageOrNone};
|
||||||
use values::computed::{CalcLengthOrPercentage, Length, LengthOrPercentage, Time};
|
use values::computed::{CalcLengthOrPercentage, Length, LengthOrPercentage, Time};
|
||||||
|
|
|
@ -47,6 +47,7 @@ extern crate util;
|
||||||
|
|
||||||
pub mod animation;
|
pub mod animation;
|
||||||
pub mod attr;
|
pub mod attr;
|
||||||
|
pub mod bezier;
|
||||||
pub mod context;
|
pub mod context;
|
||||||
mod custom_properties;
|
mod custom_properties;
|
||||||
pub mod data;
|
pub mod data;
|
||||||
|
|
|
@ -49,7 +49,6 @@ extern crate uuid;
|
||||||
|
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
pub mod bezier;
|
|
||||||
pub mod cache;
|
pub mod cache;
|
||||||
pub mod cursor;
|
pub mod cursor;
|
||||||
pub mod debug_utils;
|
pub mod debug_utils;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue