| 111 | |
| 112 | |
| 113 | KICOMMON_API BOX2I UnpackBox2( const types::Box2& aInput ) |
| 114 | { |
| 115 | return BOX2I( UnpackVector2( aInput.position() ), UnpackVector2( aInput.size() ) ); |
| 116 | } |
| 117 | |
| 118 | |
| 119 | KICOMMON_API void PackPolyLine( types::PolyLine& aOutput, const SHAPE_LINE_CHAIN& aSlc ) |
nothing calls this directly
no test coverage detected