| 3164 | } // controlPointsWithinRect |
| 3165 | |
| 3166 | BezierCPPtr |
| 3167 | Bezier::getFeatherPointForControlPoint(const BezierCPPtr & cp) const |
| 3168 | { |
| 3169 | assert( !cp->isFeatherPoint() ); |
| 3170 | int index = getControlPointIndex(cp); |
| 3171 | assert(index != -1); |
| 3172 | |
| 3173 | return getFeatherPointAtIndex(index); |
| 3174 | } |
| 3175 | |
| 3176 | BezierCPPtr |
| 3177 | Bezier::getControlPointForFeatherPoint(const BezierCPPtr & fp) const |
no test coverage detected