Skip to content

Commit

Permalink
fix: iterpolation weights order
Browse files Browse the repository at this point in the history
  • Loading branch information
yyxi committed Nov 29, 2024
1 parent da9d046 commit f889e2c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/cepheus/src/cartesian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const cartesian = (

// prettier-ignore
const order = [
n, s, e, w, ne, sw, se, nw,
// long walk
//
// n, s, ne, sw, e, nw, se, w // !
Expand All @@ -60,7 +61,7 @@ export const cartesian = (
// n, sw, ne, s, nw, se, w, e // !
// s, nw, se, n, sw, ne, w, e // !
// n, s, nw, se, w, ne, sw, e // !
s, n, sw, ne, w, se, nw, e, // !
// s, n, sw, ne, w, se, nw, e, // !
// e, nw, se, w, ne, sw, n, s
// w, ne, sw, e, nw, se, n, s
// w, e, nw, se, n, sw, ne, s
Expand Down

0 comments on commit f889e2c

Please sign in to comment.