UNPKG

arcade-physics

Version:
18 lines 580 B
export default Line; /** * @classdesc * Defines a Line segment, a part of a line between two endpoints. * * @class Line * @memberof Phaser.Geom * @constructor * @since 3.0.0 * * @param {number} [x1=0] - The x coordinate of the lines starting point. * @param {number} [y1=0] - The y coordinate of the lines starting point. * @param {number} [x2=0] - The x coordinate of the lines ending point. * @param {number} [y2=0] - The y coordinate of the lines ending point. */ declare const Line: Class; import Class from "../../utils/Class"; //# sourceMappingURL=Line.d.ts.map