Skip to content

Commit 97568c9

Browse files
committed
Fix typo (recticle >> reticle)
1 parent e909e6b commit 97568c9

9 files changed

Lines changed: 27 additions & 27 deletions

example/axes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ const scatterplot = createScatterplot({
8282
pointSize,
8383
xScale,
8484
yScale,
85-
showRecticle: true,
85+
showReticle: true,
8686
});
8787

8888
exportEl.addEventListener('click', () => saveAsPng(scatterplot));

example/connected-points-by-segments.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ let selection = [];
2929
const pointSizeMax = 10;
3030
const lassoMinDelay = 10;
3131
const lassoMinDist = 2;
32-
const showRecticle = true;
33-
const recticleColor = [1, 1, 0.878431373, 0.33];
32+
const showReticle = true;
33+
const reticleColor = [1, 1, 0.878431373, 0.33];
3434
const showPointConnections = true;
3535
const pointConnectionColor = [1, 1, 1, 0.15];
3636
const pointConnectionSize = 2;
@@ -56,8 +56,8 @@ const scatterplot = createScatterplot({
5656
lassoMinDelay,
5757
lassoMinDist,
5858
pointSize,
59-
showRecticle,
60-
recticleColor,
59+
showReticle,
60+
reticleColor,
6161
showPointConnections,
6262
pointConnectionColor,
6363
pointConnectionSize,

example/connected-points.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ let selection = [];
2727
const pointSizeMax = 10;
2828
const lassoMinDelay = 10;
2929
const lassoMinDist = 2;
30-
const showRecticle = true;
31-
const recticleColor = [1, 1, 0.878431373, 0.33];
30+
const showReticle = true;
31+
const reticleColor = [1, 1, 0.878431373, 0.33];
3232
const showPointConnections = true;
3333
const pointConnectionColor = [1, 1, 1, 0.15];
3434
const pointConnectionSize = 2;
@@ -54,8 +54,8 @@ const scatterplot = createScatterplot({
5454
lassoMinDelay,
5555
lassoMinDist,
5656
pointSize,
57-
showRecticle,
58-
recticleColor,
57+
showReticle,
58+
reticleColor,
5959
showPointConnections,
6060
pointConnectionColor,
6161
pointConnectionSize,

example/dynamic-opacity.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ let selection = [];
2626

2727
const lassoMinDelay = 10;
2828
const lassoMinDist = 2;
29-
const showRecticle = true;
30-
const recticleColor = [1, 1, 0.878431373, 0.33];
29+
const showReticle = true;
30+
const reticleColor = [1, 1, 0.878431373, 0.33];
3131

3232
const selectHandler = ({ points: selectedPoints }) => {
3333
console.log('Selected:', selectedPoints);
@@ -52,8 +52,8 @@ const scatterplot = createScatterplot({
5252
pointSize,
5353
pointColor: '#fff',
5454
opacityBy: 'density',
55-
showRecticle,
56-
recticleColor,
55+
showReticle,
56+
reticleColor,
5757
});
5858

5959
exportEl.addEventListener('click', () => saveAsPng(scatterplot));

example/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ let selection = [];
2626

2727
const lassoMinDelay = 10;
2828
const lassoMinDist = 2;
29-
const showRecticle = true;
30-
const recticleColor = [1, 1, 0.878431373, 0.33];
29+
const showReticle = true;
30+
const reticleColor = [1, 1, 0.878431373, 0.33];
3131

3232
const pointoverHandler = (pointId) => {
3333
const [x, y, category, value] = points[pointId];
@@ -67,8 +67,8 @@ const scatterplot = createScatterplot({
6767
lassoMinDelay,
6868
lassoMinDist,
6969
pointSize,
70-
showRecticle,
71-
recticleColor,
70+
showReticle,
71+
reticleColor,
7272
});
7373

7474
exportEl.addEventListener('click', () => saveAsPng(scatterplot));

example/performance-mode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ const scatterplot = createScatterplot({
7373
lassoMinDelay,
7474
lassoMinDist,
7575
pointSize,
76-
showRecticle: true,
76+
showReticle: true,
7777
performanceMode: true,
7878
});
7979

example/size-encoding.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ let selection = [];
2929

3030
const lassoMinDelay = 10;
3131
const lassoMinDist = 2;
32-
const showRecticle = true;
33-
const recticleColor = [1, 1, 0.878431373, 0.33];
32+
const showReticle = true;
33+
const reticleColor = [1, 1, 0.878431373, 0.33];
3434

3535
const selectHandler = ({ points: selectedPoints }) => {
3636
console.log('Selected:', selectedPoints);
@@ -53,8 +53,8 @@ const scatterplot = createScatterplot({
5353
lassoMinDelay,
5454
lassoMinDist,
5555
pointSize,
56-
showRecticle,
57-
recticleColor,
56+
showReticle,
57+
reticleColor,
5858
});
5959

6060
exportEl.addEventListener('click', () => saveAsPng(scatterplot));

example/texture-background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const deselectHandler = () => {
4545
const scatterplot = createScatterplot({
4646
canvas,
4747
pointSize,
48-
showRecticle: true,
48+
showReticle: true,
4949
backgroundImage: `https://picsum.photos/${Math.min(640, width)}/${Math.min(
5050
640,
5151
height

example/transition.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ let selection = [];
2727

2828
const lassoMinDelay = 10;
2929
const lassoMinDist = 2;
30-
const showRecticle = true;
31-
const recticleColor = [1, 1, 0.878431373, 0.33];
30+
const showReticle = true;
31+
const reticleColor = [1, 1, 0.878431373, 0.33];
3232

3333
const selectHandler = ({ points: selectedPoints }) => {
3434
console.log('Selected:', selectedPoints);
@@ -51,8 +51,8 @@ const scatterplot = createScatterplot({
5151
lassoMinDelay,
5252
lassoMinDist,
5353
pointSize,
54-
showRecticle,
55-
recticleColor,
54+
showReticle,
55+
reticleColor,
5656
});
5757

5858
exportEl.addEventListener('click', () => saveAsPng(scatterplot));

0 commit comments

Comments
 (0)