| 94 | // ### DotRenderable ### |
| 95 | |
| 96 | DotRenderable::DotRenderable(const PointSymbol* symbol, MapCoordF coord) |
| 97 | : Renderable(symbol->getInnerColor()) |
| 98 | { |
| 99 | double x = coord.x(); |
| 100 | double y = coord.y(); |
| 101 | double radius = (0.001 * symbol->getInnerRadius()); |
| 102 | extent = QRectF(x - radius, y - radius, 2 * radius, 2 * radius); |
| 103 | } |
| 104 | |
| 105 | PainterConfig DotRenderable::getPainterConfig(const QPainterPath* clip_path) const |
| 106 | { |
nothing calls this directly
no test coverage detected