mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 05:18:19 +00:00
Bezier-rs: Fix visualizing negative curvature on demo site
This commit is contained in:
parent
3cf955e5bb
commit
c770cd906e
2 changed files with 2 additions and 2 deletions
|
@ -232,7 +232,7 @@ impl WasmBezier {
|
|||
let intersection_point = self.0.evaluate(t);
|
||||
let normal_point = self.0.normal(t);
|
||||
let curvature = self.0.curvature(t);
|
||||
let content = if curvature < 0.000001 {
|
||||
let content = if curvature.abs() < 0.000001 {
|
||||
// Linear curve segment: the radius is infinite so we don't draw it
|
||||
format!("{bezier}{}", draw_circle(intersection_point, 3., RED, 1., WHITE))
|
||||
} else {
|
||||
|
|
|
@ -349,7 +349,7 @@ impl WasmSubpath {
|
|||
let intersection_point = self.0.evaluate(t);
|
||||
let normal_point = self.0.normal(t);
|
||||
let curvature = self.0.curvature(t);
|
||||
let content = if curvature < 0.000001 {
|
||||
let content = if curvature.abs() < 0.000001 {
|
||||
// Linear curve segment: the radius is infinite so we don't draw it
|
||||
format!("{subpath}{}", draw_circle(intersection_point, 3., RED, 1., WHITE))
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue