UNPKG

@phaserjs/phaser

Version:
68 lines (67 loc) 2.28 kB
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2020 Photon Storm Ltd. * @license {@link https://opensource.org/licenses/MIT|MIT License} */ import { CenterLineOn } from "./CenterLineOn"; import { CloneLine } from "./CloneLine"; import { CopyLineFrom } from "./CopyLineFrom"; import { ExtendLine } from "./ExtendLine"; import { GetLineAngle } from "./GetLineAngle"; import { GetLineBresenhamPoints } from "./GetLineBresenhamPoints"; import { GetLineHeight } from "./GetLineHeight"; import { GetLineLength } from "./GetLineLength"; import { GetLineMidPoint } from "./GetLineMidPoint"; import { GetLineNearestPoint } from "./GetLineNearestPoint"; import { GetLineNormal } from "./GetLineNormal"; import { GetLineNormalAngle } from "./GetLineNormalAngle"; import { GetLineNormalX } from "./GetLineNormalX"; import { GetLineNormalY } from "./GetLineNormalY"; import { GetLinePerpSlope } from "./GetLinePerpSlope"; import { GetLinePoint } from "./GetLinePoint"; import { GetLinePoints } from "./GetLinePoints"; import { GetLineRandomPoint } from "./GetLineRandomPoint"; import { GetLineReflectAngle } from "./GetLineReflectAngle"; import { GetLineSlope } from "./GetLineSlope"; import { GetLineWidth } from "./GetLineWidth"; import { GetShortestLineDistance } from "./GetShortestLineDistance"; import { Line } from "./Line"; import { LineEquals } from "./LineEquals"; import { RotateLine } from "./RotateLine"; import { RotateLineAround } from "./RotateLineAround"; import { RotateLineAroundPoint } from "./RotateLineAroundPoint"; import { SetLineToAngle } from "./SetLineToAngle"; import { TranslateLine } from "./TranslateLine"; import { TranslateLinePoint } from "./TranslateLinePoint"; export { CenterLineOn, CloneLine, CopyLineFrom, ExtendLine, GetLineAngle, GetLineBresenhamPoints, GetLineHeight, GetLineLength, GetLineMidPoint, GetLineNearestPoint, GetLineNormal, GetLineNormalAngle, GetLineNormalX, GetLineNormalY, GetLinePerpSlope, GetLinePoint, GetLinePoints, GetLineRandomPoint, GetLineReflectAngle, GetLineSlope, GetLineWidth, GetShortestLineDistance, Line, LineEquals, RotateLine, RotateLineAround, RotateLineAroundPoint, SetLineToAngle, TranslateLine, TranslateLinePoint };