Skip to content
This repository was archived by the owner on Sep 22, 2024. It is now read-only.

Commit ac30a94

Browse files
committed
Noise 1D: p5 link updated and title of html added
1 parent fe23d71 commit ac30a94

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

chp00_introduction/NOC_I_02_RandomDistribution/sketch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// An array to keep track of how often random numbers are picked
77

88
var randomCounts = [];
9-
var total = 20; //Number random numbers we want to track
9+
var total = 20; //Number of random numbers we want to track
1010

1111
function setup() {
1212
createCanvas(640,360);

chp00_introduction/Noise1D/index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<head>
2-
<script language="javascript" type="text/javascript" src="//cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.7/p5.js"></script>
2+
<script language="javascript" type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.7/p5.js"></script>
33
<script language="javascript" type="text/javascript" src="noise.js"></script>
44
<script language="javascript" type="text/javascript" src="sketch.js"></script>
5+
<title>Noise 1D</title>
56
</head>
67

78
<body>
8-
</body>
9+
</body>

0 commit comments

Comments
 (0)