54       static std::string 
form_args(
const utils::Range32f &xrange,
    55                                    const utils::Range32f &yrange,
    56                                    const utils::Range32f &zrange){
    57         std::ostringstream 
str;
    58         str << xrange.minVal << 
',' << xrange.maxVal << 
','    59             << yrange.minVal << 
',' << yrange.maxVal << 
','    60             << zrange.minVal << 
',' << zrange.maxVal;
    68       Plot3D(
const utils::Range32f &xrange=utils::Range32f(0,0),
    69              const utils::Range32f &yrange=utils::Range32f(0,0),
    70              const utils::Range32f &zrange=utils::Range32f(0,0)):
 GUIComponent(const std::string &type, const std::string ¶ms="")
creates a component with given type and optionally given parameters
Definition: GUIComponent.h:113
undocument this line if you encounter any issues!
Definition: Any.h:37
static std::string form_args(const utils::Range32f &xrange, const utils::Range32f &yrange, const utils::Range32f &zrange)
internally used utility method
Definition: Plot3D.h:54
The GUIComponent class servers as a generic interface for GUI definitions.
Definition: GUIComponent.h:44
std::string str(const T &t)
convert a data type into a string using an std::ostringstream instance
Definition: StringUtils.h:136
Plot3D(const utils::Range32f &xrange=utils::Range32f(0, 0), const utils::Range32f &yrange=utils::Range32f(0, 0), const utils::Range32f &zrange=utils::Range32f(0, 0))
create Plot3D component with given defaultViewPortsize
Definition: Plot3D.h:68
Specialized 3D visualization component intended for 3D-box plots (needs ICLGeom-library to be linked)
Definition: Plot3D.h:51