diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-11 22:20:47 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-11-11 22:20:47 +0100 |
commit | fe7413de47c83020bab5b5b603e446c139497174 (patch) | |
tree | 4cb10d4021b4df9b047e091425b6a2b100bf0152 /pointcloud.hpp | |
parent | 5bf73ca209108e2ce8f3919d453050d957212779 (diff) | |
download | odr-dpd-fe7413de47c83020bab5b5b603e446c139497174.tar.gz odr-dpd-fe7413de47c83020bab5b5b603e446c139497174.tar.bz2 odr-dpd-fe7413de47c83020bab5b5b603e446c139497174.zip |
Reverse X and Y on plot, add setters for pointcloud gain
Diffstat (limited to 'pointcloud.hpp')
-rw-r--r-- | pointcloud.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pointcloud.hpp b/pointcloud.hpp index b7df253..19febe5 100644 --- a/pointcloud.hpp +++ b/pointcloud.hpp @@ -54,6 +54,9 @@ class PointCloud // one that constructed this instance. void draw(void); + void set_tx_gain(double gain) { m_txgain = gain; } + void set_rx_gain(double gain) { m_rxgain = gain; } + private: std::vector<Point> generate_border(void); |