Skip to content

Commit

Permalink
refactor(geom-splines): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Feb 24, 2020
1 parent 3a1abc7 commit 03f629d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/geom-splines/src/cubic-bounds.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { mixCubic } from "@thi.ng/math";
import { ReadonlyVec, Vec, VecPair } from "@thi.ng/vectors";
import type { ReadonlyVec, Vec, VecPair } from "@thi.ng/vectors";

/**
* Computes cubic spline bounds for a single vector component.
Expand Down
2 changes: 1 addition & 1 deletion packages/geom-splines/src/internal/sample.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { Fn3 } from "@thi.ng/api";
import { isNumber, isPlainObject } from "@thi.ng/checks";
import { DEFAULT_SAMPLES, SamplingOpts } from "@thi.ng/geom-api";
import { Sampler } from "@thi.ng/geom-resample";
import { ReadonlyVec, set, Vec } from "@thi.ng/vectors";
import type { Fn3 } from "@thi.ng/api";

export const __sample = (sample: Fn3<Vec[], ReadonlyVec[], number, void>) =>
function $(
Expand Down

0 comments on commit 03f629d

Please sign in to comment.