Class to represent a 3D points plot. More...
#include "gnuplot.h"
Inheritance diagram for ns3::Gnuplot3dDataset:
Collaboration diagram for ns3::Gnuplot3dDataset:Classes | |
| struct | Data3d |
| Structure storing the data for a 3D plot. More... | |
| struct | Point |
| A point in a 3D plot. More... | |
Public Member Functions | |
| Gnuplot3dDataset (const std::string &title="Untitled") | |
| Gnuplot3dDataset (const std::string &title="Untitled") | |
| void | Add (double x, double y, double z) |
| void | Add (double x, double y, double z) |
| void | AddEmptyLine () |
| Add an empty line in the data output sequence. | |
| void | AddEmptyLine () |
| Add an empty line in the data output sequence. | |
| void | SetStyle (const std::string &style) |
| void | SetStyle (const std::string &style) |
Public Member Functions inherited from ns3::GnuplotDataset | |
| GnuplotDataset (const GnuplotDataset &original) | |
| Reference-counting copy constructor. | |
| GnuplotDataset (const GnuplotDataset &original) | |
| Reference-counting copy constructor. | |
| ~GnuplotDataset () | |
| Reference-counting destructor. | |
| ~GnuplotDataset () | |
| Reference-counting destructor. | |
| GnuplotDataset & | operator= (const GnuplotDataset &original) |
| Reference-counting assignment operator. | |
| GnuplotDataset & | operator= (const GnuplotDataset &original) |
| Reference-counting assignment operator. | |
| void | SetExtra (const std::string &extra) |
| Add extra formatting parameters to this dataset. | |
| void | SetExtra (const std::string &extra) |
| Add extra formatting parameters to this dataset. | |
| void | SetTitle (const std::string &title) |
| Change line title. | |
| void | SetTitle (const std::string &title) |
| Change line title. | |
Static Public Member Functions | |
| static void | SetDefaultStyle (const std::string &style) |
| Change default style for all newly created objects. | |
| static void | SetDefaultStyle (const std::string &style) |
| Change default style for all newly created objects. | |
Static Public Member Functions inherited from ns3::GnuplotDataset | |
| static void | SetDefaultExtra (const std::string &extra) |
| Change extra formatting style parameters for newly created objects. | |
| static void | SetDefaultExtra (const std::string &extra) |
| Change extra formatting style parameters for newly created objects. | |
Private Types | |
| typedef std::vector< Point > | PointSet |
| The set of points in the dataset. | |
| typedef std::vector< Point > | PointSet |
| The set of points in the dataset. | |
Static Private Attributes | |
| static std::string | m_defaultStyle = "" |
| default plot style | |
Additional Inherited Members | |
Protected Member Functions inherited from ns3::GnuplotDataset | |
| GnuplotDataset (Data *data) | |
| Called by constructors of derived classes. | |
| GnuplotDataset (Data *data) | |
| Called by constructors of derived classes. | |
Protected Attributes inherited from ns3::GnuplotDataset | |
| Data * | m_data |
| Reference counted data object. | |
Static Protected Attributes inherited from ns3::GnuplotDataset | |
| static std::string | m_defaultExtra = "" |
| Extra gnuplot parameters set on every newly created dataset. | |
Class to represent a 3D points plot.
Set the line or points style using SetStyle() and set points using Add().
|
private |
|
private |
The set of points in the dataset.
Definition at line 311 of file gnuplot_new.h.
| ns3::Gnuplot3dDataset::Gnuplot3dDataset | ( | const std::string & | title = "Untitled" | ) |
| title | the title to be associated to this dataset. |
Create an empty dataset. Usually, the dataset's title is displayed in the legend box.
Definition at line 596 of file gnuplot.cc.
| ns3::Gnuplot3dDataset::Gnuplot3dDataset | ( | const std::string & | title = "Untitled" | ) |
| title | the title to be associated to this dataset. |
Create an empty dataset. Usually, the dataset's title is displayed in the legend box.
| x | x coord to new data point |
| y | y coord to new data point |
| z | z coord to new data point |
Use this method to add a new 3D point
Definition at line 614 of file gnuplot.cc.
References data, ns3::Gnuplot3dDataset::Point::empty, and ns3::GnuplotDataset::m_data.
| x | x coord to new data point |
| y | y coord to new data point |
| z | z coord to new data point |
Use this method to add a new 3D point
| void ns3::Gnuplot3dDataset::AddEmptyLine | ( | ) |
Add an empty line in the data output sequence.
Empty lines in the plot data break continuous lines and do other things in the output.
Definition at line 625 of file gnuplot.cc.
References data, ns3::Gnuplot3dDataset::Point::empty, and ns3::GnuplotDataset::m_data.
| void ns3::Gnuplot3dDataset::AddEmptyLine | ( | ) |
Add an empty line in the data output sequence.
Empty lines in the plot data break continuous lines and do other things in the output.
Change default style for all newly created objects.
| style | the style of plotting to use for newly created datasets. |
Definition at line 602 of file gnuplot.cc.
References ns3::Create(), and m_defaultStyle.
Here is the call graph for this function:Change default style for all newly created objects.
| style | the style of plotting to use for newly created datasets. |
| style | the style of plotting to use for this dataset. |
Definition at line 608 of file gnuplot.cc.
References ns3::Create(), and ns3::GnuplotDataset::m_data.
Referenced by TestProbabilistic().
Here is the call graph for this function:
Here is the caller graph for this function:| style | the style of plotting to use for this dataset. |
|
staticprivate |