(data)
| 1849 | this.pushDirect(data); |
| 1850 | }, |
| 1851 | pushDirect(data) { |
| 1852 | if (data.length){ |
| 1853 | this.getSrcArray().push(...data); |
| 1854 | } else{ |
| 1855 | this.getSrcArray().push(data); |
| 1856 | } |
| 1857 | }, |
| 1858 | resetSrcArray(){ |
| 1859 | this.geometry[this.getSrcName()] = []; |
| 1860 | }, |
no test coverage detected