forked from maxkueng/victor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
1324 lines (1227 loc) · 27.8 KB
/
index.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
exports = module.exports = Victor;
/**
* # Victor - A JavaScript 2D vector class with methods for common vector operations
*/
/**
* Constructor. Will also work without the `new` keyword
*
* ### Examples:
* var vec1 = new Victor(100, 50);
* var vec2 = Victor(42, 1337);
*
* @param {Number} x Value of the x axis
* @param {Number} y Value of the y axis
* @return {Victor}
* @api public
*/
function Victor (x, y) {
if (!(this instanceof Victor)) {
return new Victor(x, y);
}
/**
* The X axis
*
* ### Examples:
* var vec = new Victor.fromArray(42, 21);
*
* vec.x;
* // => 42
*
* @api public
*/
this.x = x || 0;
/**
* The Y axis
*
* ### Examples:
* var vec = new Victor.fromArray(42, 21);
*
* vec.y;
* // => 21
*
* @api public
*/
this.y = y || 0;
};
/**
* # Static
*/
/**
* Creates a new instance from an array
*
* ### Examples:
* var vec = Victor.fromArray([42, 21]);
*
* vec.toString();
* // => x:42, y:21
*
* @name Victor.fromArray
* @param {Array} array Array with the x and y values at index 0 and 1 respectively
* @return {Victor} The new instance
* @api public
*/
Victor.fromArray = function (arr) {
return new Victor(arr[0] || 0, arr[1] || 0);
};
/**
* Creates a new instance from an object
*
* ### Examples:
* var vec = Victor.fromObject({ x: 42, y: 21 });
*
* vec.toString();
* // => x:42, y:21
*
* @name Victor.fromObject
* @param {Object} obj Object with the values for x and y
* @return {Victor} The new instance
* @api public
*/
Victor.fromObject = function (obj) {
return new Victor(obj.x || 0, obj.y || 0);
};
/**
* # Manipulation
*
* These functions are chainable.
*/
/**
* Adds another vector's X axis to this one
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var vec2 = new Victor(20, 30);
*
* vec1.addX(vec2);
* vec1.toString();
* // => x:30, y:10
*
* @param {Victor} vector The other vector you want to add to this one
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.addX = function (vec) {
this.x += vec.x;
return this;
};
/**
* Adds another vector's Y axis to this one
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var vec2 = new Victor(20, 30);
*
* vec1.addY(vec2);
* vec1.toString();
* // => x:10, y:40
*
* @param {Victor} vector The other vector you want to add to this one
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.addY = function (vec) {
this.y += vec.y;
return this;
};
/**
* Adds another vector to this one
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var vec2 = new Victor(20, 30);
*
* vec1.add(vec2);
* vec1.toString();
* // => x:30, y:40
*
* @param {Victor} vector The other vector you want to add to this one
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.add = function (vec) {
this.x += vec.x;
this.y += vec.y;
return this;
};
/**
* Adds the given scalar to both vector axis
*
* ### Examples:
* var vec = new Victor(1, 2);
*
* vec.addScalar(2);
* vec.toString();
* // => x: 3, y: 4
*
* @param {Number} scalar The scalar to add
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.addScalar = function (scalar) {
this.x += scalar;
this.y += scalar;
return this;
};
/**
* Adds the given scalar to the X axis
*
* ### Examples:
* var vec = new Victor(1, 2);
*
* vec.addScalarX(2);
* vec.toString();
* // => x: 3, y: 2
*
* @param {Number} scalar The scalar to add
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.addScalarX = function (scalar) {
this.x += scalar;
return this;
};
/**
* Adds the given scalar to the Y axis
*
* ### Examples:
* var vec = new Victor(1, 2);
*
* vec.addScalarY(2);
* vec.toString();
* // => x: 1, y: 4
*
* @param {Number} scalar The scalar to add
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.addScalarY = function (scalar) {
this.y += scalar;
return this;
};
/**
* Subtracts the X axis of another vector from this one
*
* ### Examples:
* var vec1 = new Victor(100, 50);
* var vec2 = new Victor(20, 30);
*
* vec1.subtractX(vec2);
* vec1.toString();
* // => x:80, y:50
*
* @param {Victor} vector The other vector you want subtract from this one
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.subtractX = function (vec) {
this.x -= vec.x;
return this;
};
/**
* Subtracts the Y axis of another vector from this one
*
* ### Examples:
* var vec1 = new Victor(100, 50);
* var vec2 = new Victor(20, 30);
*
* vec1.subtractY(vec2);
* vec1.toString();
* // => x:100, y:20
*
* @param {Victor} vector The other vector you want subtract from this one
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.subtractY = function (vec) {
this.y -= vec.y;
return this;
};
/**
* Subtracts another vector from this one
*
* ### Examples:
* var vec1 = new Victor(100, 50);
* var vec2 = new Victor(20, 30);
*
* vec1.subtract(vec2);
* vec1.toString();
* // => x:80, y:20
*
* @param {Victor} vector The other vector you want subtract from this one
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.subtract = function (vec) {
this.x -= vec.x;
this.y -= vec.y;
return this;
};
/**
* Subtracts the given scalar from both axis
*
* ### Examples:
* var vec = new Victor(100, 200);
*
* vec.subtractScalar(20);
* vec.toString();
* // => x: 80, y: 180
*
* @param {Number} scalar The scalar to subtract
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.subtractScalar = function (scalar) {
this.x -= scalar;
this.y -= scalar;
return this;
};
/**
* Subtracts the given scalar from the X axis
*
* ### Examples:
* var vec = new Victor(100, 200);
*
* vec.subtractScalarX(20);
* vec.toString();
* // => x: 80, y: 200
*
* @param {Number} scalar The scalar to subtract
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.subtractScalarX = function (scalar) {
this.x -= scalar;
return this;
};
/**
* Subtracts the given scalar from the Y axis
*
* ### Examples:
* var vec = new Victor(100, 200);
*
* vec.subtractScalarY(20);
* vec.toString();
* // => x: 100, y: 180
*
* @param {Number} scalar The scalar to subtract
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.subtractScalarY = function (scalar) {
this.y -= scalar;
return this;
};
/**
* Divides the X axis by the x component of given vector
*
* ### Examples:
* var vec = new Victor(100, 50);
* var vec2 = new Victor(2, 0);
*
* vec.divideX(vec2);
* vec.toString();
* // => x:50, y:50
*
* @param {Victor} vector The other vector you want divide by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.divideX = function (vector) {
this.x /= vector.x;
return this;
};
/**
* Divides the Y axis by the y component of given vector
*
* ### Examples:
* var vec = new Victor(100, 50);
* var vec2 = new Victor(0, 2);
*
* vec.divideY(vec2);
* vec.toString();
* // => x:100, y:25
*
* @param {Victor} vector The other vector you want divide by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.divideY = function (vector) {
this.y /= vector.y;
return this;
};
/**
* Divides both vector axis by a axis values of given vector
*
* ### Examples:
* var vec = new Victor(100, 50);
* var vec2 = new Victor(2, 2);
*
* vec.divide(vec2);
* vec.toString();
* // => x:50, y:25
*
* @param {Victor} vector The vector to divide by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.divide = function (vector) {
this.x /= vector.x;
this.y /= vector.y;
return this;
};
/**
* Divides both vector axis by the given scalar value
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.divideScalar(2);
* vec.toString();
* // => x:50, y:25
*
* @param {Number} The scalar to divide by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.divideScalar = function (scalar) {
if (scalar !== 0) {
this.x /= scalar;
this.y /= scalar;
} else {
this.x = 0;
this.y = 0;
}
return this;
};
/**
* Divides the X axis by the given scalar value
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.divideScalarX(2);
* vec.toString();
* // => x:50, y:50
*
* @param {Number} The scalar to divide by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.divideScalarX = function (scalar) {
if (scalar !== 0) {
this.x /= scalar;
} else {
this.x = 0;
}
return this;
};
/**
* Divides the Y axis by the given scalar value
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.divideScalarY(2);
* vec.toString();
* // => x:100, y:25
*
* @param {Number} The scalar to divide by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.divideScalarY = function (scalar) {
if (scalar !== 0) {
this.y /= scalar;
} else {
this.y = 0;
}
return this;
};
/**
* Inverts the X axis
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.invertX();
* vec.toString();
* // => x:-100, y:50
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.invertX = function () {
this.x *= -1;
return this;
};
/**
* Inverts the Y axis
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.invertY();
* vec.toString();
* // => x:100, y:-50
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.invertY = function () {
this.y *= -1;
return this;
};
/**
* Inverts both axis
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.invert();
* vec.toString();
* // => x:-100, y:-50
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.invert = function () {
this.invertX();
this.invertY();
return this;
};
/**
* Multiplies the X axis by X component of given vector
*
* ### Examples:
* var vec = new Victor(100, 50);
* var vec2 = new Victor(2, 0);
*
* vec.multiplyX(vec2);
* vec.toString();
* // => x:200, y:50
*
* @param {Victor} vector The vector to multiply the axis with
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.multiplyX = function (vector) {
this.x *= vector.x;
return this;
};
/**
* Multiplies the Y axis by Y component of given vector
*
* ### Examples:
* var vec = new Victor(100, 50);
* var vec2 = new Victor(0, 2);
*
* vec.multiplyX(vec2);
* vec.toString();
* // => x:100, y:100
*
* @param {Victor} vector The vector to multiply the axis with
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.multiplyY = function (vector) {
this.y *= vector.y;
return this;
};
/**
* Multiplies both vector axis by values from a given vector
*
* ### Examples:
* var vec = new Victor(100, 50);
* var vec2 = new Victor(2, 2);
*
* vec.multiply(vec2);
* vec.toString();
* // => x:200, y:100
*
* @param {Victor} vector The vector to multiply by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.multiply = function (vector) {
this.x *= vector.x;
this.y *= vector.y;
return this;
};
/**
* Multiplies both vector axis by the given scalar value
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.multiplyScalar(2);
* vec.toString();
* // => x:200, y:100
*
* @param {Number} The scalar to multiply by
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.multiplyScalar = function (scalar) {
this.x *= scalar;
this.y *= scalar;
return this;
};
/**
* Multiplies the X axis by the given scalar
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.multiplyScalarX(2);
* vec.toString();
* // => x:200, y:50
*
* @param {Number} The scalar to multiply the axis with
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.multiplyScalarX = function (scalar) {
this.x *= scalar;
return this;
};
/**
* Multiplies the Y axis by the given scalar
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.multiplyScalarY(2);
* vec.toString();
* // => x:100, y:100
*
* @param {Number} The scalar to multiply the axis with
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.multiplyScalarY = function (scalar) {
this.y *= scalar;
return this;
};
/**
* Normalize
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.normalize = function () {
var length = this.length();
if (length === 0) {
this.x = 1;
this.y = 0;
} else {
this.divide(Victor(length, length));
}
return this;
};
Victor.prototype.norm = Victor.prototype.normalize;
/**
* If the absolute vector axis is greater than `max`, multiplies the axis by `factor`
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.limit(80, 0.9);
* vec.toString();
* // => x:90, y:50
*
* @param {Number} max The maximum value for both x and y axis
* @param {Number} factor Factor by which the axis are to be multiplied with
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.limit = function (max, factor) {
if (Math.abs(this.x) > max){ this.x *= factor; }
if (Math.abs(this.y) > max){ this.y *= factor; }
return this;
};
/**
* Randomizes both vector axis with a value between 2 vectors
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.randomize(new Victor(50, 60), new Victor(70, 80`));
* vec.toString();
* // => x:67, y:73
*
* @param {Victor} topLeft first vector
* @param {Victor} bottomRight second vector
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.randomize = function (topLeft, bottomRight) {
this.randomizeX(topLeft, bottomRight);
this.randomizeY(topLeft, bottomRight);
return this;
};
/**
* Randomizes the y axis with a value between 2 vectors
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.randomizeX(new Victor(50, 60), new Victor(70, 80`));
* vec.toString();
* // => x:55, y:50
*
* @param {Victor} topLeft first vector
* @param {Victor} bottomRight second vector
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.randomizeX = function (topLeft, bottomRight) {
var min = Math.min(topLeft.x, bottomRight.x);
var max = Math.max(topLeft.x, bottomRight.x);
this.x = random(min, max);
return this;
};
/**
* Randomizes the y axis with a value between 2 vectors
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.randomizeY(new Victor(50, 60), new Victor(70, 80`));
* vec.toString();
* // => x:100, y:66
*
* @param {Victor} topLeft first vector
* @param {Victor} bottomRight second vector
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.randomizeY = function (topLeft, bottomRight) {
var min = Math.min(topLeft.y, bottomRight.y);
var max = Math.max(topLeft.y, bottomRight.y);
this.y = random(min, max);
return this;
};
/**
* Randomly randomizes either axis between 2 vectors
*
* ### Examples:
* var vec = new Victor(100, 50);
*
* vec.randomizeAny(new Victor(50, 60), new Victor(70, 80));
* vec.toString();
* // => x:100, y:77
*
* @param {Victor} topLeft first vector
* @param {Victor} bottomRight second vector
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.randomizeAny = function (topLeft, bottomRight) {
if (!! Math.round(Math.random())) {
this.randomizeX(topLeft, bottomRight);
} else {
this.randomizeY(topLeft, bottomRight);
}
return this;
};
/**
* Rounds both axis to an integer value
*
* ### Examples:
* var vec = new Victor(100.2, 50.9);
*
* vec.unfloat();
* vec.toString();
* // => x:100, y:51
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.unfloat = function () {
this.x = Math.round(this.x);
this.y = Math.round(this.y);
return this;
};
/**
* Rounds both axis to a certain precision
*
* ### Examples:
* var vec = new Victor(100.2, 50.9);
*
* vec.unfloat();
* vec.toString();
* // => x:100, y:51
*
* @param {Number} Precision (default: 8)
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.toFixed = function (precision) {
if (typeof precision === 'undefined') { precision = 8; }
this.x = this.x.toFixed(precision);
this.y = this.y.toFixed(precision);
return this;
};
/**
* Performs a linear blend / interpolation of the X axis towards another vector
*
* ### Examples:
* var vec1 = new Victor(100, 100);
* var vec2 = new Victor(200, 200);
*
* vec1.mixX(vec2, 0.5);
* vec.toString();
* // => x:150, y:100
*
* @param {Victor} vector The other vector
* @param {Number} amount The blend amount (optional, default: 0.5)
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.mixX = function (vec, amount) {
if (typeof amount === 'undefined') {
amount = 0.5;
}
this.x = (1 - amount) * this.x + amount * vec.x;
return this;
};
/**
* Performs a linear blend / interpolation of the Y axis towards another vector
*
* ### Examples:
* var vec1 = new Victor(100, 100);
* var vec2 = new Victor(200, 200);
*
* vec1.mixY(vec2, 0.5);
* vec.toString();
* // => x:100, y:150
*
* @param {Victor} vector The other vector
* @param {Number} amount The blend amount (optional, default: 0.5)
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.mixY = function (vec, amount) {
if (typeof amount === 'undefined') {
amount = 0.5;
}
this.y = (1 - amount) * this.y + amount * vec.y;
return this;
};
/**
* Performs a linear blend / interpolation towards another vector
*
* ### Examples:
* var vec1 = new Victor(100, 100);
* var vec2 = new Victor(200, 200);
*
* vec1.mix(vec2, 0.5);
* vec.toString();
* // => x:150, y:150
*
* @param {Victor} vector The other vector
* @param {Number} amount The blend amount (optional, default: 0.5)
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.mix = function (vec, amount) {
this.mixX(vec, amount);
this.mixY(vec, amount);
return this;
};
/**
* # Products
*/
/**
* Creates a clone of this vector
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var vec2 = vec1.clone();
*
* vec2.toString();
* // => x:10, y:10
*
* @return {Victor} A clone of the vector
* @api public
*/
Victor.prototype.clone = function () {
return new Victor(this.x, this.y);
};
/**
* Copies another vector's X component in to its own
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var vec2 = new Victor(20, 20);
* var vec2 = vec1.copyX(vec1);
*
* vec2.toString();
* // => x:20, y:10
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.copyX = function (vec) {
this.x = vec.x;
return this;
};
/**
* Copies another vector's Y component in to its own
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var vec2 = new Victor(20, 20);
* var vec2 = vec1.copyY(vec1);
*
* vec2.toString();
* // => x:10, y:20
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.copyY = function (vec) {
this.y = vec.y;
return this;
};
/**
* Copies another vector's X and Y components in to its own
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var vec2 = new Victor(20, 20);
* var vec2 = vec1.copy(vec1);
*
* vec2.toString();
* // => x:20, y:20
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.copy = function (vec) {
this.copyX(vec);
this.copyY(vec);
return this;
};
/**
* Sets the vector to zero (0,0)
*
* ### Examples:
* var vec1 = new Victor(10, 10);
* var1.zero();
* vec1.toString();
* // => x:0, y:0
*
* @return {Victor} `this` for chaining capabilities
* @api public
*/
Victor.prototype.zero = function () {
this.x = this.y = 0;
return this;
};
/**
* Calculates the dot product of this vector and another
*
* ### Examples:
* var vec1 = new Victor(100, 50);
* var vec2 = new Victor(200, 60);
*
* vec1.dot(vec2);
* // => 23000
*
* @param {Victor} vector The second vector
* @return {Number} Dot product
* @api public
*/
Victor.prototype.dot = function (vec2) {
return this.x * vec2.x + this.y * vec2.y;
};
Victor.prototype.cross = function (vec2) {
return (this.x * vec2.y ) - (this.y * vec2.x );