(relativeTo)
| 15719 | return this._getPathVector(relativeTo) |
| 15720 | } |
| 15721 | _getPathVector(relativeTo) { |
| 15722 | if (this.isRoot(relativeTo)) return [] |
| 15723 | const path = this.parent._getPathVector(relativeTo) |
| 15724 | path.push(this.index) |
| 15725 | return path |
| 15726 | } |
| 15727 | get index() { |
| 15728 | return this.parent._indexOfParticle(this) |
| 15729 | } |
no test coverage detected