@phaserjs/phaser
Version:
58 lines (57 loc) • 2.21 kB
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
import { BuildEquilateralTriangle } from "./BuildEquilateralTriangle";
import { BuildRightTriangle } from "./BuildRightTriangle";
import { CenterTriangleOn } from "./CenterTriangleOn";
import { CloneTriangle } from "./CloneTriangle";
import { CopyTriangleFrom } from "./CopyTriangleFrom";
import { DecomposeTriangle } from "./DecomposeTriangle";
import { GetTriangleArea } from "./GetTriangleArea";
import { GetTriangleCentroid } from "./GetTriangleCentroid";
import { GetTriangleCircumCenter } from "./GetTriangleCircumCenter";
import { GetTriangleCircumCircle } from "./GetTriangleCircumCircle";
import { GetTriangleEdges } from "./GetTriangleEdges";
import { GetTriangleInCenter } from "./GetTriangleInCenter";
import { GetTrianglePerimeter } from "./GetTrianglePerimeter";
import { GetTrianglePoint } from "./GetTrianglePoint";
import { GetTrianglePoints } from "./GetTrianglePoints";
import { GetTriangleRandomPoint } from "./GetTriangleRandomPoint";
import { RotateTriangle } from "./RotateTriangle";
import { RotateTriangleAround } from "./RotateTriangleAround";
import { RotateTriangleAroundPoint } from "./RotateTriangleAroundPoint";
import { TranslateTriangle } from "./TranslateTriangle";
import { Triangle } from "./Triangle";
import { TriangleContains } from "./TriangleContains";
import { TriangleContainsPoint } from "./TriangleContainsPoint";
import { TriangleContainsPoints } from "./TriangleContainsPoints";
import { TriangleEquals } from "./TriangleEquals";
export {
BuildEquilateralTriangle,
BuildRightTriangle,
CenterTriangleOn,
CloneTriangle,
CopyTriangleFrom,
DecomposeTriangle,
GetTriangleArea,
GetTriangleCentroid,
GetTriangleCircumCenter,
GetTriangleCircumCircle,
GetTriangleEdges,
GetTriangleInCenter,
GetTrianglePerimeter,
GetTrianglePoint,
GetTrianglePoints,
GetTriangleRandomPoint,
RotateTriangle,
RotateTriangleAround,
RotateTriangleAroundPoint,
TranslateTriangle,
Triangle,
TriangleContains,
TriangleContainsPoint,
TriangleContainsPoints,
TriangleEquals
};