Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
willeastcott committed Nov 20, 2024
1 parent 662e2c6 commit 3068f77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/math/quat.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class Quat {

/**
* Conjugates a quaternion.
*
*
* @param {Quat} [src] - The quaternion to conjugate. If not set, the operation is done in place.
* @returns {Quat} Self for chaining.
* @example
Expand Down Expand Up @@ -341,7 +341,7 @@ class Quat {
* const a = new pc.Quat().setFromEulerAngles(0, 30, 0);
* const b = new pc.Quat().setFromEulerAngles(0, 60, 0);
* const r = new pc.Quat();
*
*
* // r is set to a 90 degree rotation around the Y axis
* // In other words, r = a * b
* r.mul2(a, b);
Expand Down

0 comments on commit 3068f77

Please sign in to comment.