diff --git a/lab01.cbp b/lab01.cbp
index a79945d..6624bca 100644
--- a/lab01.cbp
+++ b/lab01.cbp
@@ -40,6 +40,10 @@
+
+
+
+
diff --git a/svg.cpp b/svg.cpp
index b37f5a1..7b1ccd0 100644
--- a/svg.cpp
+++ b/svg.cpp
@@ -48,10 +48,24 @@ show_histogram_svg(const vector& bins) {
const auto TEXT_WIDTH = 50;
const auto BIN_HEIGHT = 30;
const auto BLOCK_WIDTH = 10;
+ const auto MAX_WIDTH = IMAGE_WIDTH - TEXT_WIDTH;
+ size_t max_count = 0;
+ for (size_t x : bins) {
+ if (x > max_count) {
+ max_count = x;
+ }
+ }
+ if (max_count == 0) {
+ max_count = 1;
+ }
+ auto scale_factor = static_cast(MAX_WIDTH) / (max_count * BLOCK_WIDTH);
+ if (scale_factor > 1) {
+ scale_factor = 1;
+ }
svg_begin(IMAGE_WIDTH, IMAGE_HEIGHT);
double top = 0;
for (size_t bin : bins) {
- const double bin_width = BLOCK_WIDTH * bin;
+ double bin_width = BLOCK_WIDTH * bin * scale_factor;
svg_text(TEXT_LEFT, top + TEXT_BASELINE, to_string(bin));
svg_rect(TEXT_WIDTH, top, bin_width, BIN_HEIGHT);
top += BIN_HEIGHT;