mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 20:58:56 +00:00
375db253f2
* Quadratic Bezier Interpolation has been added to the Math.Interpolation functions * A new Quadratic Bezier Curve class has been added, expanding the available Curve types * Path.quadraticBezierTo allows you to add a Quadratic Bezier Curve into your Path.
20 lines
542 B
JavaScript
20 lines
542 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
/**
|
|
* @namespace Phaser.Curves
|
|
*/
|
|
|
|
module.exports = {
|
|
Path: require('./path/Path'),
|
|
|
|
CubicBezier: require('./CubicBezierCurve'),
|
|
Curve: require('./Curve'),
|
|
Ellipse: require('./EllipseCurve'),
|
|
Line: require('./LineCurve'),
|
|
QuadraticBezier: require('./QuadraticBezierCurve'),
|
|
Spline: require('./SplineCurve')
|
|
};
|