-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
Copy pathvertex.js
1598 lines (1584 loc) · 42.7 KB
/
vertex.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**
* @module Shape
* @submodule Vertex
* @for p5
* @requires core
* @requires constants
*/
import * as constants from '../core/constants';
function vertex(p5, fn){
/**
* Begins adding vertices to a custom shape.
*
* The `beginShape()` and <a href="#/p5/endShape">endShape()</a> functions
* allow for creating custom shapes in 2D or 3D. `beginShape()` begins adding
* vertices to a custom shape and <a href="#/p5/endShape">endShape()</a> stops
* adding them.
*
* The parameter, `kind`, sets the kind of shape to make. The available kinds are:
*
* - `PATH` (the default) to draw shapes by tracing out the path along their edges.
* - `POINTS` to draw a series of points.
* - `LINES` to draw a series of unconnected line segments.
* - `TRIANGLES` to draw a series of separate triangles.
* - `TRIANGLE_FAN` to draw a series of connected triangles sharing the first vertex in a fan-like fashion.
* - `TRIANGLE_STRIP` to draw a series of connected triangles in strip fashion.
* - `QUADS` to draw a series of separate quadrilaterals (quads).
* - `QUAD_STRIP` to draw quad strip using adjacent edges to form the next quad.
*
* After calling `beginShape()`, shapes can be built by calling
* <a href="#/p5/vertex">vertex()</a>,
* <a href="#/p5/bezierVertex">bezierVertex()</a>,
* <a href="#/p5/bezierVertex">bezierVertex()</a>, and/or
* <a href="#/p5/splineVertex">splineVertex()</a>. Calling
* <a href="#/p5/endShape">endShape()</a> will stop adding vertices to the
* shape. Each shape will be outlined with the current stroke color and filled
* with the current fill color.
*
* Transformations such as <a href="#/p5/translate">translate()</a>,
* <a href="#/p5/rotate">rotate()</a>, and
* <a href="#/p5/scale">scale()</a> don't work between `beginShape()` and
* <a href="#/p5/endShape">endShape()</a>. It's also not possible to use
* other shapes, such as <a href="#/p5/ellipse">ellipse()</a> or
* <a href="#/p5/rect">rect()</a>, between `beginShape()` and
* <a href="#/p5/endShape">endShape()</a>.
*
* @method beginShape
* @param {(POINTS|LINES|TRIANGLES|TRIANGLE_FAN|TRIANGLE_STRIP|QUADS|QUAD_STRIP|PATH)} [kind=PATH] either POINTS, LINES, TRIANGLES, TRIANGLE_FAN
* TRIANGLE_STRIP, QUADS, QUAD_STRIP or PATH. Defaults to PATH.
* @chainable
*
* @example
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* beginShape();
*
* // Add vertices.
* vertex(30, 20);
* vertex(85, 20);
* vertex(85, 75);
* vertex(30, 75);
*
* // Stop drawing the shape.
* endShape(CLOSE);
*
* describe('A white square on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* // Only draw the vertices (points).
* beginShape(POINTS);
*
* // Add vertices.
* vertex(30, 20);
* vertex(85, 20);
* vertex(85, 75);
* vertex(30, 75);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Four black dots that form a square are drawn on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* // Only draw lines between alternating pairs of vertices.
* beginShape(LINES);
*
* // Add vertices.
* vertex(30, 20);
* vertex(85, 20);
* vertex(85, 75);
* vertex(30, 75);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Two horizontal black lines on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Style the shape.
* noFill();
*
* // Start drawing the shape.
* beginShape();
*
* // Add vertices.
* vertex(30, 20);
* vertex(85, 20);
* vertex(85, 75);
* vertex(30, 75);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Three black lines form a sideways U shape on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Style the shape.
* noFill();
*
* // Start drawing the shape.
* beginShape();
*
* // Add vertices.
* vertex(30, 20);
* vertex(85, 20);
* vertex(85, 75);
* vertex(30, 75);
*
* // Stop drawing the shape.
* // Connect the first and last vertices.
* endShape(CLOSE);
*
* describe('A black outline of a square drawn on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* // Draw a series of triangles.
* beginShape(TRIANGLES);
*
* // Left triangle.
* vertex(30, 75);
* vertex(40, 20);
* vertex(50, 75);
*
* // Right triangle.
* vertex(60, 20);
* vertex(70, 75);
* vertex(80, 20);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Two white triangles drawn on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* // Draw a series of triangles.
* beginShape(TRIANGLE_STRIP);
*
* // Add vertices.
* vertex(30, 75);
* vertex(40, 20);
* vertex(50, 75);
* vertex(60, 20);
* vertex(70, 75);
* vertex(80, 20);
* vertex(90, 75);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Five white triangles that are interleaved drawn on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* // Draw a series of triangles that share their first vertex.
* beginShape(TRIANGLE_FAN);
*
* // Add vertices.
* vertex(57.5, 50);
* vertex(57.5, 15);
* vertex(92, 50);
* vertex(57.5, 85);
* vertex(22, 50);
* vertex(57.5, 15);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Four white triangles form a square are drawn on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* // Draw a series of quadrilaterals.
* beginShape(QUADS);
*
* // Left rectangle.
* vertex(30, 20);
* vertex(30, 75);
* vertex(50, 75);
* vertex(50, 20);
*
* // Right rectangle.
* vertex(65, 20);
* vertex(65, 75);
* vertex(85, 75);
* vertex(85, 20);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Two white rectangles drawn on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* // Draw a series of quadrilaterals.
* beginShape(QUAD_STRIP);
*
* // Add vertices.
* vertex(30, 20);
* vertex(30, 75);
* vertex(50, 20);
* vertex(50, 75);
* vertex(65, 20);
* vertex(65, 75);
* vertex(85, 20);
* vertex(85, 75);
*
* // Stop drawing the shape.
* endShape();
*
* describe('Three white rectangles that share edges are drawn on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100, WEBGL);
*
* background(200);
*
* // Start drawing the shape.
* // Draw a series of quadrilaterals.
* beginShape(PATH);
*
* // Add the vertices.
* vertex(-30, -30, 0);
* vertex(30, -30, 0);
* vertex(30, -10, 0);
* vertex(-10, -10, 0);
* vertex(-10, 10, 0);
* vertex(30, 10, 0);
* vertex(30, 30, 0);
* vertex(-30, 30, 0);
*
* // Stop drawing the shape.
* // Connect the first and last vertices.
* endShape(CLOSE);
*
* describe('A blocky C shape drawn in white on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* // Click and drag with the mouse to view the scene from different angles.
*
* function setup() {
* createCanvas(100, 100, WEBGL);
*
* describe('A blocky C shape drawn in red, blue, and green on a gray background.');
* }
*
* function draw() {
* background(200);
*
* // Enable orbiting with the mouse.
* orbitControl();
*
* // Start drawing the shape.
* // Draw a series of quadrilaterals.
* beginShape(PATH);
*
* // Add the vertices.
* fill('red');
* stroke('red');
* vertex(-30, -30, 0);
* vertex(30, -30, 0);
* vertex(30, -10, 0);
* fill('green');
* stroke('green');
* vertex(-10, -10, 0);
* vertex(-10, 10, 0);
* vertex(30, 10, 0);
* fill('blue');
* stroke('blue');
* vertex(30, 30, 0);
* vertex(-30, 30, 0);
*
* // Stop drawing the shape.
* // Connect the first and last vertices.
* endShape(CLOSE);
* }
* </code>
* </div>
*/
fn.beginShape = function(kind) {
// p5._validateParameters('beginShape', arguments);
this._renderer.beginShape(...arguments);
};
/**
* Adds a Bézier curve segment to a custom shape.
*
* `bezierVertex()` adds a curved segment to custom shapes. The Bézier curves
* it creates are defined like those made by the
* <a href="#/p5/bezier">bezier()</a> function. `bezierVertex()` must be
* called between the
* <a href="#/p5/beginShape">beginShape()</a> and
* <a href="#/p5/endShape">endShape()</a> functions. The curved segment uses
* the previous vertex as the first anchor point, so there must be at least
* one call to <a href="#/p5/vertex">vertex()</a> before `bezierVertex()` can
* be used.
*
* The first four parameters, `x2`, `y2`, `x3`, and `y3`, set the curve’s two
* control points. The control points "pull" the curve towards them.
*
* The fifth and sixth parameters, `x4`, and `y4`, set the last anchor point.
* The last anchor point is where the curve ends.
*
* Bézier curves can also be drawn in 3D using WebGL mode. The 3D version of
* `bezierVertex()` has eight arguments because each point has x-, y-, and
* z-coordinates.
*
* Note: `bezierVertex()` won’t work when an argument is passed to
* <a href="#/p5/beginShape">beginShape()</a>.
*
* @method bezierVertex
* @param {Number} x2 x-coordinate of the first control point.
* @param {Number} y2 y-coordinate of the first control point.
* @param {Number} x3 x-coordinate of the second control point.
* @param {Number} y3 y-coordinate of the second control point.
* @param {Number} x4 x-coordinate of the anchor point.
* @param {Number} y4 y-coordinate of the anchor point.
*
* @example
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Style the shape.
* noFill();
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first anchor point.
* vertex(30, 20);
*
* // Add the Bézier vertex.
* bezierVertex(80, 0, 80, 75, 30, 75);
*
* // Stop drawing the shape.
* endShape();
*
* describe('A black C curve on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Draw the anchor points in black.
* stroke(0);
* strokeWeight(5);
* point(30, 20);
* point(30, 75);
*
* // Draw the control points in red.
* stroke(255, 0, 0);
* point(80, 0);
* point(80, 75);
*
* // Style the shape.
* noFill();
* stroke(0);
* strokeWeight(1);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first anchor point.
* vertex(30, 20);
*
* // Add the Bézier vertex.
* bezierVertex(80, 0, 80, 75, 30, 75);
*
* // Stop drawing the shape.
* endShape();
*
* // Draw red lines from the anchor points to the control points.
* stroke(255, 0, 0);
* line(30, 20, 80, 0);
* line(30, 75, 80, 75);
*
* describe(
* 'A gray square with three curves. A black curve has two straight, red lines that extend from its ends. The endpoints of all the curves are marked with dots.'
* );
* }
* </code>
* </div>
*
* <div>
* <code>
* // Click the mouse near the red dot in the top-right corner
* // and drag to change the curve's shape.
*
* let x2 = 80;
* let y2 = 0;
* let isChanging = false;
*
* function setup() {
* createCanvas(100, 100);
*
* describe(
* 'A gray square with three curves. A black curve has two straight, red lines that extend from its ends. The endpoints of all the curves are marked with dots.'
* );
* }
*
* function draw() {
* background(200);
*
* // Draw the anchor points in black.
* stroke(0);
* strokeWeight(5);
* point(30, 20);
* point(30, 75);
*
* // Draw the control points in red.
* stroke(255, 0, 0);
* point(x2, y2);
* point(80, 75);
*
* // Style the shape.
* noFill();
* stroke(0);
* strokeWeight(1);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first anchor point.
* vertex(30, 20);
*
* // Add the Bézier vertex.
* bezierVertex(x2, y2, 80, 75, 30, 75);
*
* // Stop drawing the shape.
* endShape();
*
* // Draw red lines from the anchor points to the control points.
* stroke(255, 0, 0);
* line(30, 20, x2, y2);
* line(30, 75, 80, 75);
* }
*
* // Start changing the first control point if the user clicks near it.
* function mousePressed() {
* if (dist(mouseX, mouseY, x2, y2) < 20) {
* isChanging = true;
* }
* }
*
* // Stop changing the first control point when the user releases the mouse.
* function mouseReleased() {
* isChanging = false;
* }
*
* // Update the first control point while the user drags the mouse.
* function mouseDragged() {
* if (isChanging === true) {
* x2 = mouseX;
* y2 = mouseY;
* }
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first anchor point.
* vertex(30, 20);
*
* // Add the Bézier vertices.
* bezierVertex(80, 0, 80, 75, 30, 75);
* bezierVertex(50, 80, 60, 25, 30, 20);
*
* // Stop drawing the shape.
* endShape();
*
* describe('A crescent moon shape drawn in white on a gray background.');
* }
* </code>
* </div>
*
* <div>
* <code>
* // Click and drag the mouse to view the scene from different angles.
*
* function setup() {
* createCanvas(100, 100, WEBGL);
*
* describe('A crescent moon shape drawn in white on a blue background. When the user drags the mouse, the scene rotates and a second moon is revealed.');
* }
*
* function draw() {
* background('midnightblue');
*
* // Enable orbiting with the mouse.
* orbitControl();
*
* // Style the moons.
* noStroke();
* fill('lemonchiffon');
*
* // Draw the first moon.
* beginShape();
* vertex(-20, -30, 0);
* bezierVertex(30, -50, 0, 30, 25, 0, -20, 25, 0);
* bezierVertex(0, 30, 0, 10, -25, 0, -20, -30, 0);
* endShape();
*
* // Draw the second moon.
* beginShape();
* vertex(-20, -30, -20);
* bezierVertex(30, -50, -20, 30, 25, -20, -20, 25, -20);
* bezierVertex(0, 30, -20, 10, -25, -20, -20, -30, -20);
* endShape();
* }
* </code>
* </div>
*/
/**
* @method bezierVertex
* @param {Number} x2
* @param {Number} y2
* @param {Number} z2 z-coordinate of the first control point.
* @param {Number} x3
* @param {Number} y3
* @param {Number} z3 z-coordinate of the second control point.
* @param {Number} x4
* @param {Number} y4
* @param {Number} z4 z-coordinate of the anchor point.
*/
fn.bezierVertex = function(...args) {
this._renderer.bezierVertex(...args);
};
/**
* Adds a spline curve segment to a custom shape.
*
* `splineVertex()` adds a curved segment to custom shapes. The spline curves
* it creates are defined like those made by the
* <a href="#/p5/curve">curve()</a> function. `splineVertex()` must be called
* between the <a href="#/p5/beginShape">beginShape()</a> and
* <a href="#/p5/endShape">endShape()</a> functions.
*
* Spline curves can form shapes and curves that slope gently. They’re like
* cables that are attached to a set of points. Splines are defined by two
* anchor points and two control points. `splineVertex()` must be called at
* least four times between
* <a href="#/p5/beginShape">beginShape()</a> and
* <a href="#/p5/endShape">endShape()</a> in order to draw a curve:
*
* ```js
* beginShape();
*
* // Add the first control point.
* splineVertex(84, 91);
*
* // Add the anchor points to draw between.
* splineVertex(68, 19);
* splineVertex(21, 17);
*
* // Add the second control point.
* splineVertex(32, 91);
*
* endShape();
* ```
*
* The code snippet above would only draw the curve between the anchor points,
* similar to the <a href="#/p5/curve">curve()</a> function. The segments
* between the control and anchor points can be drawn by calling
* `splineVertex()` with the coordinates of the control points:
*
* ```js
* beginShape();
*
* // Add the first control point and draw a segment to it.
* splineVertex(84, 91);
* splineVertex(84, 91);
*
* // Add the anchor points to draw between.
* splineVertex(68, 19);
* splineVertex(21, 17);
*
* // Add the second control point.
* splineVertex(32, 91);
*
* // Uncomment the next line to draw the segment to the second control point.
* // splineVertex(32, 91);
*
* endShape();
* ```
*
* The first two parameters, `x` and `y`, set the vertex’s location. For
* example, calling `splineVertex(10, 10)` adds a point to the curve at
* `(10, 10)`.
*
* Spline curves can also be drawn in 3D using WebGL mode. The 3D version of
* `splineVertex()` has three arguments because each point has x-, y-, and
* z-coordinates. By default, the vertex’s z-coordinate is set to 0.
*
* Note: `splineVertex()` won’t work when an argument is passed to
* <a href="#/p5/beginShape">beginShape()</a>.
*
* @method curveVertex
* @param {Number} x x-coordinate of the vertex
* @param {Number} y y-coordinate of the vertex
* @chainable
*
* @example
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Style the shape.
* noFill();
* strokeWeight(1);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first control point.
* splineVertex(32, 91);
*
* // Add the anchor points.
* splineVertex(21, 17);
* splineVertex(68, 19);
*
* // Add the second control point.
* splineVertex(84, 91);
*
* // Stop drawing the shape.
* endShape();
*
* // Style the anchor and control points.
* strokeWeight(5);
*
* // Draw the anchor points in black.
* stroke(0);
* point(21, 17);
* point(68, 19);
*
* // Draw the control points in red.
* stroke(255, 0, 0);
* point(32, 91);
* point(84, 91);
*
* describe(
* 'A black curve drawn on a gray background. The curve has black dots at its ends. Two red dots appear near the bottom of the canvas.'
* );
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Style the shape.
* noFill();
* strokeWeight(1);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first control point and draw a segment to it.
* splineVertex(32, 91);
* splineVertex(32, 91);
*
* // Add the anchor points.
* splineVertex(21, 17);
* splineVertex(68, 19);
*
* // Add the second control point.
* splineVertex(84, 91);
*
* // Stop drawing the shape.
* endShape();
*
* // Style the anchor and control points.
* strokeWeight(5);
*
* // Draw the anchor points in black.
* stroke(0);
* point(21, 17);
* point(68, 19);
*
* // Draw the control points in red.
* stroke(255, 0, 0);
* point(32, 91);
* point(84, 91);
*
* describe(
* 'A black curve drawn on a gray background. The curve passes through one red dot and two black dots. Another red dot appears near the bottom of the canvas.'
* );
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Style the shape.
* noFill();
* strokeWeight(1);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first control point and draw a segment to it.
* splineVertex(32, 91);
* splineVertex(32, 91);
*
* // Add the anchor points.
* splineVertex(21, 17);
* splineVertex(68, 19);
*
* // Add the second control point and draw a segment to it.
* splineVertex(84, 91);
* splineVertex(84, 91);
*
* // Stop drawing the shape.
* endShape();
*
* // Style the anchor and control points.
* strokeWeight(5);
*
* // Draw the anchor points in black.
* stroke(0);
* point(21, 17);
* point(68, 19);
*
* // Draw the control points in red.
* stroke(255, 0, 0);
* point(32, 91);
* point(84, 91);
*
* describe(
* 'A black U curve drawn upside down on a gray background. The curve passes from one red dot through two black dots and ends at another red dot.'
* );
* }
* </code>
* </div>
*
* <div>
* <code>
* // Click the mouse near the red dot in the bottom-left corner
* // and drag to change the curve's shape.
*
* let x1 = 32;
* let y1 = 91;
* let isChanging = false;
*
* function setup() {
* createCanvas(100, 100);
*
* describe(
* 'A black U curve drawn upside down on a gray background. The curve passes from one red dot through two black dots and ends at another red dot.'
* );
* }
*
* function draw() {
* background(200);
*
* // Style the shape.
* noFill();
* stroke(0);
* strokeWeight(1);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first control point and draw a segment to it.
* splineVertex(x1, y1);
* splineVertex(x1, y1);
*
* // Add the anchor points.
* splineVertex(21, 17);
* splineVertex(68, 19);
*
* // Add the second control point and draw a segment to it.
* splineVertex(84, 91);
* splineVertex(84, 91);
*
* // Stop drawing the shape.
* endShape();
*
* // Style the anchor and control points.
* strokeWeight(5);
*
* // Draw the anchor points in black.
* stroke(0);
* point(21, 17);
* point(68, 19);
*
* // Draw the control points in red.
* stroke(255, 0, 0);
* point(x1, y1);
* point(84, 91);
* }
*
* // Start changing the first control point if the user clicks near it.
* function mousePressed() {
* if (dist(mouseX, mouseY, x1, y1) < 20) {
* isChanging = true;
* }
* }
*
* // Stop changing the first control point when the user releases the mouse.
* function mouseReleased() {
* isChanging = false;
* }
*
* // Update the first control point while the user drags the mouse.
* function mouseDragged() {
* if (isChanging === true) {
* x1 = mouseX;
* y1 = mouseY;
* }
* }
* </code>
* </div>
*
* <div>
* <code>
* function setup() {
* createCanvas(100, 100);
*
* background(200);
*
* // Start drawing the shape.
* beginShape();
*
* // Add the first control point and draw a segment to it.
* splineVertex(32, 91);
* splineVertex(32, 91);
*
* // Add the anchor points.
* splineVertex(21, 17);
* splineVertex(68, 19);
*
* // Add the second control point.
* splineVertex(84, 91);
* splineVertex(84, 91);
*
* // Stop drawing the shape.
* endShape();
*
* describe('A ghost shape drawn in white on a gray background.');
* }
* </code>
* </div>
*/
/**
* @method curveVertex
* @param {Number} x
* @param {Number} y