mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-19 02:48:12 +08:00
* define Subpath struct in gcore and refactor node-graph * Refactor few methods * refactoring worked! * refactor centoid area and length * remove unused * cleanup * fix pathseg_points function * fix tranforming segments * fix segment intersection * refactor to_path_segments fn in gpath-bool crate * refactor gcraft * add bezier-rs dep * Code review the editor directory * use path-bool for solving roots * Code review --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
5 lines
133 B
Rust
5 lines
133 B
Rust
// Implementation constants
|
|
|
|
/// Constant used to determine if `f64`s are equivalent.
|
|
pub const MAX_ABSOLUTE_DIFFERENCE: f64 = 1e-3;
|