()
| 147 | |
| 148 | /** */ |
| 149 | start() { |
| 150 | this.continuing_ = true; |
| 151 | if ( |
| 152 | Math.abs(this.maxVelocityX_) <= MIN_VELOCITY_ && |
| 153 | Math.abs(this.maxVelocityY_) <= MIN_VELOCITY_ |
| 154 | ) { |
| 155 | this.fireMove_(); |
| 156 | this.completeContinue_(true); |
| 157 | } else { |
| 158 | this.runContinuing_(); |
| 159 | } |
| 160 | return this; |
| 161 | } |
| 162 | |
| 163 | /** |
| 164 | * Halts the motion. The motion promise will be rejected since the motion |
no test coverage detected