Skip to content

Commit 3a80560

Browse files
authored
Move from poly-cool to polycool (#3309)
1 parent c4f6a2c commit 3a80560

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
194194
tracing = "0.1"
195195
rfd = "0.15"
196196
open = "5.3"
197-
poly-cool = "0.3"
197+
polycool = "0.4"
198198
spin = "0.10"
199199
clap = "4.5"
200200
spirv-std = { git = "https://github.com/Firestar99/rust-gpu-new", rev = "c12f216121820580731440ee79ebc7403d6ea04f", features = ["bytemuck"] }

node-graph/gcore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ kurbo = { workspace = true }
3939
lyon_geom = { workspace = true }
4040
log = { workspace = true }
4141
base64 = { workspace = true }
42-
poly-cool = { workspace = true }
42+
polycool = { workspace = true }
4343

4444
# Optional workspace dependencies
4545
serde = { workspace = true, optional = true }

node-graph/gcore/src/vector/algorithms/bezpath_algorithms.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ pub fn pathseg_normals_to_point(segment: PathSeg, point: Point) -> Vec<f64> {
249249
let y = y.coefficients_mut();
250250
x[0] -= point.x;
251251
y[0] -= point.y;
252-
let poly = poly_cool::Poly::new([
252+
let poly = polycool::Poly::new([
253253
x[0] * x[1] + y[0] * y[1],
254254
x[1] * x[1] + y[1] * y[1] + 2. * (x[0] * x[2] + y[0] * y[2]),
255255
3. * (x[2] * x[1] + y[2] * y[1]) + 3. * (x[0] * x[3] + y[0] * y[3]),

0 commit comments

Comments
 (0)