()
| 269 | } |
| 270 | |
| 271 | deletePath(){ |
| 272 | if ( this.activePath == null ) return; |
| 273 | |
| 274 | this.store.delete( this.activePath ); |
| 275 | const names = this.store.getPathNames(); |
| 276 | this.nameCtrl = this.nameCtrl.options( names ); |
| 277 | this.nameCtrl.onChange( ( value ) => { |
| 278 | this.loadPath( value ); |
| 279 | }); |
| 280 | |
| 281 | if ( names.length > 0) this.loadPath( names[0] ); |
| 282 | this.updatePathNamesGUI(); |
| 283 | } |
| 284 | |
| 285 | export(){ |
| 286 | let unitScalar, precision; |
no test coverage detected