Comparing version 0.0.99 to 0.0.100
{ | ||
"name": "ogl", | ||
"version": "0.0.99", | ||
"version": "0.0.100", | ||
"description": "WebGL Library", | ||
@@ -5,0 +5,0 @@ "exports": "./src/index.mjs", |
@@ -66,2 +66,3 @@ import * as EulerFunc from './functions/EulerFunc.js'; | ||
EulerFunc.fromRotationMatrix(this, m, order); | ||
this.onChange(); | ||
return this; | ||
@@ -72,2 +73,3 @@ } | ||
tmpMat4.fromQuaternion(q); | ||
this.onChange(); | ||
return this.fromRotationMatrix(tmpMat4, order); | ||
@@ -74,0 +76,0 @@ } |
@@ -123,2 +123,3 @@ import * as QuatFunc from './functions/QuatFunc.js'; | ||
QuatFunc.fromEuler(this, euler, euler.order); | ||
this.onChange(); | ||
return this; | ||
@@ -129,2 +130,3 @@ } | ||
QuatFunc.setAxisAngle(this, axis, a); | ||
this.onChange(); | ||
return this; | ||
@@ -135,2 +137,3 @@ } | ||
QuatFunc.slerp(this, this, q, t); | ||
this.onChange(); | ||
return this; | ||
@@ -144,2 +147,3 @@ } | ||
this[3] = a[o + 3]; | ||
this.onChange(); | ||
return this; | ||
@@ -146,0 +150,0 @@ } |
327964
9030