diff options
author | Irene Knapp <ireneista@gmail.com> | 2020-05-05 13:54:11 -0700 |
---|---|---|
committer | Irene Knapp <ireneista@gmail.com> | 2020-05-05 13:54:11 -0700 |
commit | 7d93bb1b5b3d8b9812be873d46dfcadf2ba11431 (patch) | |
tree | 4b4c0fed82ca2b307421f51f55a8d395b63aeccc /index.html | |
parent | f87d61e2d509f7528341eaa722ddc88493e71fc7 (diff) |
Change nStepsAround to 128; there's detail that was lost
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html index 1982c92..64a2990 100644 --- a/index.html +++ b/index.html @@ -2,7 +2,7 @@ <html lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> -<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> +<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=8.0, user-scalable=1"> <title>Color, Harmony, and Math</title> <style type="text/css"> .color-wheel { @@ -33,7 +33,7 @@ function main() { let colorWheelParameters = { scale: 10000, - nStepsAround: 32, + nStepsAround: 128, nStepsOutward: 128, }; |