YPlot.cxx
Go to the documentation of this file.
1 
12 // for truncation warning in debug mode
13 #ifdef _MSC_VER
14 #include "msdevstudio/MSconfig.h"
15 #endif
16 
17 #include "YPlot.h"
18 
20 #include "reps/SymbolPointRep.h"
21 
22 namespace hippodraw {
23 
25 {
26  m_name = "Y Plot";
27 
28  Map1Projector * projector = new Map1Projector();
29 // projector -> setYErrorOption ( true );
30 
31  m_projector = projector;
33 }
34 
36 {
37  return new YPlot ( *this );
38 }
39 
40 bool YPlot::acceptFunction ( int num )
41 {
42  return num == 1;
43 }
44 
45 bool
46 YPlot::
48 {
49  return axis == Axes::X || axis == Axes::Y;
50 }
51 
52 } // namespace hippodraw
53 

Generated for HippoDraw Class Library by doxygen