| 3174 | } |
| 3175 | |
| 3176 | BezierCPPtr |
| 3177 | Bezier::getControlPointForFeatherPoint(const BezierCPPtr & fp) const |
| 3178 | { |
| 3179 | assert( fp->isFeatherPoint() ); |
| 3180 | int index = getFeatherPointIndex(fp); |
| 3181 | assert(index != -1); |
| 3182 | if (index == -1) { |
| 3183 | return BezierCPPtr(); |
| 3184 | } |
| 3185 | |
| 3186 | return getControlPointAtIndex(index); |
| 3187 | } |
| 3188 | |
| 3189 | void |
| 3190 | Bezier::leftDerivativeAtPoint(bool useGuiCurves, |
no test coverage detected