Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(90)

Unified Diff: webrtc/tools/event_log_visualizer/plot_base.cc

Issue 2179223003: Convenience functions to set axis properties in visualization tool. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Change literal type to avoid VC++ compile warning Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webrtc/tools/event_log_visualizer/plot_base.h ('k') | webrtc/tools/event_log_visualizer/plot_python.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/event_log_visualizer/plot_base.cc
diff --git a/webrtc/tools/event_log_visualizer/plot_base.cc b/webrtc/tools/event_log_visualizer/plot_base.cc
new file mode 100644
index 0000000000000000000000000000000000000000..f27fcd6b84ff2fe6412dbf03b4b35065a6d39bbb
--- /dev/null
+++ b/webrtc/tools/event_log_visualizer/plot_base.cc
@@ -0,0 +1,75 @@
+/*
+ * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
+ *
+ * Use of this source code is governed by a BSD-style license
+ * that can be found in the LICENSE file in the root of the source
+ * tree. An additional intellectual property rights grant can be found
+ * in the file PATENTS. All contributing project authors may
+ * be found in the AUTHORS file in the root of the source tree.
+ */
+
+#include "webrtc/tools/event_log_visualizer/plot_base.h"
+
+#include <algorithm>
+
+#include "webrtc/base/checks.h"
+
+namespace webrtc {
+namespace plotting {
+
+void Plot::SetXAxis(float min_value,
+ float max_value,
+ std::string label,
+ float left_margin,
+ float right_margin) {
+ RTC_DCHECK_LE(min_value, max_value);
+ xaxis_min_ = min_value - left_margin * (max_value - min_value);
+ xaxis_max_ = max_value + right_margin * (max_value - min_value);
+ xaxis_label_ = label;
+}
+
+void Plot::SetSuggestedXAxis(float min_value,
+ float max_value,
+ std::string label,
+ float left_margin,
+ float right_margin) {
+ for (const auto& series : series_list_) {
+ for (const auto& point : series.points) {
+ min_value = std::min(min_value, point.x);
+ max_value = std::max(max_value, point.x);
+ }
+ }
+ SetXAxis(min_value, max_value, label, left_margin, right_margin);
+}
+
+void Plot::SetYAxis(float min_value,
+ float max_value,
+ std::string label,
+ float bottom_margin,
+ float top_margin) {
+ RTC_DCHECK_LE(min_value, max_value);
+ yaxis_min_ = min_value - bottom_margin * (max_value - min_value);
+ yaxis_max_ = max_value + top_margin * (max_value - min_value);
+ yaxis_label_ = label;
+}
+
+void Plot::SetSuggestedYAxis(float min_value,
+ float max_value,
+ std::string label,
+ float bottom_margin,
+ float top_margin) {
+ for (const auto& series : series_list_) {
+ for (const auto& point : series.points) {
+ min_value = std::min(min_value, point.y);
+ max_value = std::max(max_value, point.y);
+ }
+ }
+ SetYAxis(min_value, max_value, label, bottom_margin, top_margin);
+}
+
+void Plot::SetTitle(std::string title) {
+ title_ = title;
+}
+
+} // namespace plotting
+} // namespace webrtc
« no previous file with comments | « webrtc/tools/event_log_visualizer/plot_base.h ('k') | webrtc/tools/event_log_visualizer/plot_python.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698