Handle painting of rectangles that start at negative infinity
This commit is contained in:
parent
f1c57cb950
commit
4ba69e3a11
1 changed files with 1 additions and 0 deletions
|
@ -459,6 +459,7 @@ pub fn mesh_command(options: MesherOptions, fonts: &Fonts, command: PaintCmd, ou
|
|||
} => {
|
||||
// Common bug is to accidentally create an infinitely sized ractangle.
|
||||
// Make sure we can visualize that:
|
||||
rect.min = rect.min.max(pos2(-1e7, -1e7));
|
||||
rect.max = rect.max.min(pos2(1e7, 1e7));
|
||||
|
||||
let mut path = Path::default();
|
||||
|
|
Loading…
Reference in a new issue