gnuplot-commands.cc File Reference
#include "roboptim/core/config.hh"
#include <boost/format.hpp>
#include <roboptim/core/visualization/gnuplot-commands.hh>
Include dependency graph for gnuplot-commands.cc:

Namespaces

namespace  roboptim
 

Meta-functions, functions and solvers related classes.


namespace  roboptim::visualization
 

Graphic visualization.


namespace  roboptim::visualization::gnuplot
 

Gnuplot rendering.


Defines

#define GNUPLOT_UNARY_COMMAND(NAME)
#define GNUPLOT_STR_COMMAND(NAME, ARG)

Functions

ROBOPTIM_DLLAPI Command roboptim::visualization::gnuplot::comment (const char *) throw ()
 Make a Gnuplot comment.
ROBOPTIM_DLLAPI Command roboptim::visualization::gnuplot::set (const char *var, const char *val="") throw ()
 Make a Gnuplot set command.
ROBOPTIM_DLLAPI Command roboptim::visualization::gnuplot::unset (const char *var) throw ()
 Make a Gnuplot unset command.
ROBOPTIM_DLLAPI Command roboptim::visualization::gnuplot::show (const char *var) throw ()
 Make a Gnuplot show command.

Define Documentation

#define GNUPLOT_STR_COMMAND (   NAME,
  ARG 
)
Value:
Command         \
      NAME (const char* ARG) throw ()   \
      {           \
  std::string command = #NAME;    \
  if (*ARG != 0)        \
    {         \
      command += " '";      \
      command += ARG;     \
      command += "'";     \
    }         \
  return Command (command);   \
      }
#define GNUPLOT_UNARY_COMMAND (   NAME)
Value:
Command         \
      NAME () throw ()        \
      {           \
  return Command (#NAME);     \
      }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines