We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f293b4 commit 9d9fec9Copy full SHA for 9d9fec9
CodingChallenges/CC_093_DoublePendulum_p5.js/sketch.js
@@ -23,6 +23,8 @@ let buffer;
23
24
function setup() {
25
createCanvas(500, 300);
26
+ //Issue with wrong rendering on a retina Mac. See Issue: https://github.com/CodingTrain/website/issues/574
27
+ pixelDensity(1);
28
a1 = PI / 2;
29
a2 = PI / 2;
30
cx = width / 2;
0 commit comments