mirror of
https://github.com/photonstorm/phaser
synced 2024-12-19 01:24:48 +00:00
9 lines
405 B
TypeScript
9 lines
405 B
TypeScript
|
/**
|
||
|
* Get the angle of the curves entry point.
|
||
|
*
|
||
|
* @method Phaser.Hermite#getEntryTangent
|
||
|
* @param {Phaser.Point|Object} point - The Phaser.Point object, or an Object with public `x` and `y` properties, in which the tangent vector values will be stored.
|
||
|
* @return {Phaser.Point} A Point object containing the tangent vector of this Hermite curve.
|
||
|
*/
|
||
|
export default function (curve: any, point: any): any;
|