Skip to content

Commit

Permalink
Use Quaternion for type for consistency (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 authored Jan 24, 2024
1 parent 26a3d50 commit 4bbba90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/three/src/math/Quaternion.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class Quaternion {
multiplyQuaternions(a: Quaternion, b: Quaternion): this;

slerp(qb: Quaternion, t: number): this;
slerpQuaternions(qa: QuaternionLike, qb: Quaternion, t: number): this;
slerpQuaternions(qa: Quaternion, qb: Quaternion, t: number): this;
equals(v: Quaternion): boolean;

/**
Expand Down

0 comments on commit 4bbba90

Please sign in to comment.