| 1594 | } |
| 1595 | |
| 1596 | void Context::appendPath( const cinder::Shape2d &path ) |
| 1597 | { |
| 1598 | for( size_t contCount = 0; contCount < path.getNumContours(); ++contCount ) { |
| 1599 | const Path2d &contour( path.getContour( contCount ) ); |
| 1600 | appendPath( contour ); |
| 1601 | } |
| 1602 | } |
| 1603 | |
| 1604 | void Context::appendPath( const cinder::Path2d &path ) |
| 1605 | { |
no test coverage detected