MediaWiki:Gadget-clippy.js: Revision history

Jump to navigation Jump to search
Diff selection: mark the radio boxes of the versions to compare or click on a revision date to view it. (cur) = difference from current version, (prev) = difference from preceding version,  m = minor edit, → = section edit

20 October 2024

17 October 2024

13 October 2024

  • curprev 02:0702:07, 13 October 2024Alex talk contribs 106,891 bytes +106,891 Created page with "→‎globals $, mw, rswiki: Math.Vector = function (x,y) { this.x = x; this.y = y; } Math.Vector.prototype = { clone: function () { return new Math.Vector(this.x, this.y); }, negate: function () { this.x = -this.x; this.y = -this.y; return this; }, neg: function () { return this.clone().negate(); }, addeq: function (v) { this.x += v.x; this.y += v.y; return this; },..."