(scene, referenceFrame)
| 843 | } |
| 844 | |
| 845 | function PolylineUpdater(scene, referenceFrame) { |
| 846 | this._unusedIndexes = []; |
| 847 | this._polylineCollection = new PolylineCollection(); |
| 848 | this._scene = scene; |
| 849 | this._referenceFrame = referenceFrame; |
| 850 | scene.primitives.add(this._polylineCollection); |
| 851 | } |
| 852 | |
| 853 | PolylineUpdater.prototype.update = function (time) { |
| 854 | const frame = this._referenceFrame; |
nothing calls this directly
no test coverage detected
searching dependent graphs…