Skip to content

Commit

Permalink
Finishing touches
Browse files Browse the repository at this point in the history
  • Loading branch information
curran committed Aug 12, 2023
1 parent b015034 commit 5ed3bf8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"vite": "^4.4.9",
"vzcode": "^0.12.0"
"vzcode": "^0.13.0"
},
"dependencies": {
"d3-color": "^3.1.0",
Expand Down
8 changes: 4 additions & 4 deletions viz/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ import { hcl } from 'd3-color';
// Try editing the values of h, c, and l.
// In VZCode, hold down the ALT key while
// dragging the mouse to change the values.
const h = 274;
const c = 232;
const l = 31;
const h = 282;
const c = 327;
const l = -17;
const color = hcl(h, c, l);

// Define the transition duration (milliseconds)
const transitionDuration = 200;

// Radius of the circle
const radius = 124;
const radius = 100;

export const viz = (container, { state, setState }) => {
// Set the initial x, y
Expand Down

0 comments on commit 5ed3bf8

Please sign in to comment.