Skip to content

Commit

Permalink
chore(doc): remove invalid link for getTangent
Browse files Browse the repository at this point in the history
  • Loading branch information
lslzl3000 committed Dec 4, 2024
1 parent 2e46fd2 commit 67b52e4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/math/CubicBezierCurve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export class CubicBezierCurve {
* get tagent by calc from curve
* @param t a position in range [0-1]
* @returns tagent direction
* See: http://bimixual.org/AnimationLibrary/beziertangents.html
*/
public getTangent(t: number): Vector3 {
if (!(t >= 0.0 && t <= 1.0)) {
Expand Down

0 comments on commit 67b52e4

Please sign in to comment.