bezierflattener.rs |
const FUZZ_DOUBLE: f64 = 1.0e-12; // Double-precision relative 0
const MIN_TOLERANCE: f64 = 1.0e-6;
const DEFAULT_FLATTENING_TOLERANCE: f64 = 0.25; |
25385 |
c_bindings.rs |
#[no_mangle]
pub extern "C" fn aa_stroke_quad_to(s: &mut Stroker, cx: f32, cy: f32, x: f32, y: f32) {
s.quad_to(cx, cy, x, y);
} |
5345 |
lib.rs |
|
44391 |
tri_rasterize.rs |
Proper rounding of float to integer |
6507 |