Skip to content

Commit 598155b

Browse files
committed
Clean up.
1 parent b349852 commit 598155b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/math/Quaternion.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
import { _Math } from './Math.js';
2-
import { Vector3 } from './Vector3.js';
3-
41
/**
52
* @author mikael emtinger / http://gomo.se/
63
* @author alteredq / http://alteredqualia.com/
74
* @author WestLangley / http://github.com/WestLangley
85
* @author bhouston / http://clara.io
96
*/
107

8+
import { _Math } from './Math.js';
9+
import { Vector3 } from './Vector3.js';
10+
1111
function Quaternion( x, y, z, w ) {
1212

1313
this._x = x || 0;
@@ -18,8 +18,9 @@ function Quaternion( x, y, z, w ) {
1818
}
1919

2020
Object.assign( Quaternion, {
21+
2122
isQuaternion: true,
22-
23+
2324
slerp: function ( qa, qb, qm, t ) {
2425

2526
return qm.copy( qa ).slerp( qb, t );

0 commit comments

Comments
 (0)