aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/geometry.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* layout: Adjust the position of block formatting contexts based on floatPatrick Walton2014-09-221-0/+3
| | | | | | | | placement. Improves Reddit considerably. Closes #3456.
* Remove min/max functions from util::geometry. Use std::cmp instead.Simon Sapin2014-09-191-4/+0
|
* Fix dimensionality of AuSimon Sapin2014-09-191-20/+10
| | | | | | | | | | | | | | | | | | | | | | | | | Previously, we implemented: Au * Au -> Au Au / Au -> Au Au % Au -> Au ... which are inconsistent. It should be: Au * Au -> SquaredAu Au / Au -> i32 Au % Au -> i32 or: Au * i32 -> Au Au / i32 -> Au Au % i32 -> Au I picked the latter. Also, the multiplicative identity does not make sense when multiplication take two different types.
* Cargoify servoJack Moffitt2014-09-081-0/+304