Accessibility colors
This commit is contained in:
@@ -110,7 +110,7 @@
|
||||
{
|
||||
for (n = -nn/2; n <= -1; n++)
|
||||
{
|
||||
ctx.strokeStyle = "#ff0000";
|
||||
ctx.strokeStyle = "#ee0000";
|
||||
ctx.beginPath();
|
||||
ctx.moveTo(xPos + 100 * n / nn, yPos + 20 * (y(n - t) + r * y(-n -t)) + 50);
|
||||
ctx.lineTo(xPos + 100 * (n + 1) / nn, yPos + 20 * (y(n + 1 - t) + r * y( - n - 1 - t)) + 50);
|
||||
@@ -118,7 +118,7 @@
|
||||
}
|
||||
if (eps == 0)
|
||||
{
|
||||
ctx.strokeStyle = "#0000ff";
|
||||
ctx.strokeStyle = "#9999ff";
|
||||
ctx.beginPath();
|
||||
ctx.moveTo(xPos, yPos + 20 * tau * y(-t) + 50);
|
||||
ctx.lineTo(xPos + 50, yPos + 20 * tau * y(-t) + 50);
|
||||
@@ -127,7 +127,7 @@
|
||||
{
|
||||
for (n = 0; n <= eps * nn / 2 - 1; n++)
|
||||
{
|
||||
ctx.strokeStyle = "#0000ff";
|
||||
ctx.strokeStyle = "#9999ff";
|
||||
ctx.beginPath();
|
||||
ctx.moveTo(xPos + 100 * n / nn / eps, yPos + 20 * tau * y(n-t) + 50);
|
||||
ctx.lineTo(xPos + 100 * (n + 1) / nn / eps, yPos + 20 * tau * y((n + 1)-t) + 50);
|
||||
|
||||
Reference in New Issue
Block a user