(transitioner)
| 352 | } |
| 353 | |
| 354 | function destroyMorphHandler(transitioner) { |
| 355 | const tweens = transitioner._currentTweens; |
| 356 | for (let i = 0; i < tweens.length; ++i) { |
| 357 | tweens[i].cancelTween(); |
| 358 | } |
| 359 | transitioner._currentTweens.length = 0; |
| 360 | transitioner._morphHandler = |
| 361 | transitioner._morphHandler && transitioner._morphHandler.destroy(); |
| 362 | } |
| 363 | |
| 364 | const scratchCVTo3DCartographic = new Cartographic(); |
| 365 | const scratchCVTo3DSurfacePoint = new Cartesian3(); |
no test coverage detected
searching dependent graphs…