imiger-fork/sources/WebContent/js/coordinates.js @ 1e2b2c27
1 | 1e2b2c27 | Tomáš Šimandl | /**
|
---|---|---|---|
2 | * Class representing a coordinates pair.
|
||
3 | * @constructor
|
||
4 | * @param {float} x X coordinate.
|
||
5 | * @param {float} y Y coordinate.
|
||
6 | */
|
||
7 | function Coordinates(x, y) { |
||
8 | /** @prop {float} x X coordinate. */
|
||
9 | this.x = x; |
||
10 | /** @prop {float} y Y coordinate. */
|
||
11 | this.y = y; |
||
12 | }
|