| 50 | } |
| 51 | |
| 52 | void ObjectGcode::setDirtyFlags( uint32_t mask, bool invalidateCaches ) |
| 53 | { |
| 54 | ObjectLinesHolder::setDirtyFlags( mask, invalidateCaches ); |
| 55 | |
| 56 | if ( mask & DIRTY_POSITION || mask & DIRTY_PRIMITIVES ) |
| 57 | { |
| 58 | if ( polyline_ ) |
| 59 | { |
| 60 | gcodeChangedSignal( mask ); |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | std::vector<std::string> ObjectGcode::getInfoLines() const |
| 66 | { |
no outgoing calls
no test coverage detected