diff options
author | Aki <please@ignore.pl> | 2024-11-04 00:36:09 +0100 |
---|---|---|
committer | Aki <please@ignore.pl> | 2024-11-04 00:44:38 +0100 |
commit | ca84d1764d343ac54579335ec52fa21eb7d747d9 (patch) | |
tree | 24b0ced4ea04b389e0cbbd3a33821efc8e95815f /index.html | |
parent | 0c316b1e683e5d2e3e5dea0d9b94a575ef145fbf (diff) | |
download | wadsworth-ca84d1764d343ac54579335ec52fa21eb7d747d9.zip wadsworth-ca84d1764d343ac54579335ec52fa21eb7d747d9.tar.gz wadsworth-ca84d1764d343ac54579335ec52fa21eb7d747d9.tar.bz2 |
Adjusted ratio to match Wheatstone Cryptograph
Described as "for every revolution of the large hand (...) the small
hand rotates one revolution plus one character". Where outer ring
had 27 characters and inner ring had 26 characters.
Doc: http://www.jproc.ca/crypto/wheatstone.html
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -51,11 +51,11 @@ function onmove(event) { } </script> <svg onload="svg = this" onmousemove="onmove(event)" onmouseleave="stop()" onmouseup="stop()" viewBox="0 0 100 100"> -<g data-angle="0" data-ratio="4" class="pointer"> +<g data-angle="0" data-ratio="27" class="pointer"> <path d="M49 50 L80 50 Z"/> <circle onmousedown="start(this.parentNode)" cx="85" cy="50" r="5"/> </g> -<g data-angle="0" data-ratio="-1" class="pointer"> +<g data-angle="0" data-ratio="26" class="pointer"> <path d="M49 50 L70 50 Z"/> <circle onmousedown="start(this.parentNode)" cx="75" cy="50" r="5"/> </g> |