| 307 | } |
| 308 | |
| 309 | void |
| 310 | BezierCurve::getControlPointPosition(int index, |
| 311 | double time, |
| 312 | double* x, |
| 313 | double *y, |
| 314 | double *lx, |
| 315 | double *ly, |
| 316 | double *rx, |
| 317 | double *ry) const |
| 318 | { |
| 319 | BezierCPPtr cp = _bezier->getControlPointAtIndex(index); |
| 320 | |
| 321 | cp->getPositionAtTime(true, time, ViewIdx(0), x, y); |
| 322 | cp->getLeftBezierPointAtTime(true, time, ViewIdx(0), lx, ly); |
| 323 | cp->getRightBezierPointAtTime(true, time, ViewIdx(0), rx, ry); |
| 324 | } |
| 325 | |
| 326 | void |
| 327 | BezierCurve::getFeatherPointPosition(int index, |
no test coverage detected