(GL, obj)
| 307 | |
| 308 | var OBJ = function () { |
| 309 | function OBJ(GL, obj) { |
| 310 | classCallCheck(this, OBJ); |
| 311 | |
| 312 | this.GL = GL; |
| 313 | this.gl = GL.gl; |
| 314 | this.obj = obj = obj || {}; |
| 315 | this.operate = []; |
| 316 | this.opearteID = 0; |
| 317 | this.opearteBuild = {}; |
| 318 | this.color = colorTransform(obj.color || '#FFF'); |
| 319 | } |
| 320 | |
| 321 | createClass(OBJ, [{ |
| 322 | key: 'translate', |
nothing calls this directly
no test coverage detected