Comparing version 0.0.110 to 0.0.111
{ | ||
"name": "ogl", | ||
"version": "0.0.110", | ||
"version": "0.0.111", | ||
"description": "WebGL Library", | ||
@@ -5,0 +5,0 @@ "exports": "./src/index.mjs", |
@@ -75,2 +75,9 @@ import * as EulerFunc from './functions/EulerFunc.js'; | ||
fromArray(a, o = 0) { | ||
this[0] = a[o]; | ||
this[1] = a[o + 1]; | ||
this[2] = a[o + 2]; | ||
return this; | ||
} | ||
toArray(a = [], o = 0) { | ||
@@ -77,0 +84,0 @@ a[o] = this[0]; |
Sorry, the diff of this file is not supported yet
335297
64
9181