| 190 | } |
| 191 | |
| 192 | wf::geometry_t wf::construct_box( |
| 193 | const wf::point_t& origin, const wf::dimensions_t& dimensions) |
| 194 | { |
| 195 | return { |
| 196 | origin.x, origin.y, dimensions.width, dimensions.height |
| 197 | }; |
| 198 | } |
| 199 | |
| 200 | wf::geometry_t wf::scale_box( |
| 201 | wf::geometry_t A, wf::geometry_t B, wf::geometry_t box) |
nothing calls this directly
no outgoing calls
no test coverage detected