36 #ifndef __SBNW_LAYOUT_CANVAS_H_
37 #define __SBNW_LAYOUT_CANVAS_H_
42 #include "graphfab/sbml/autolayoutSBML.h"
54 Canvas() : _w(0), _h(0) {}
56 Canvas(
Real width,
Real height) : _w(width), _h(height) {}
59 Real getWidth()
const;
62 Real getHeight()
const;
65 void setWidth(
Real w);
68 void setHeight(
Real h);
71 Box getBox()
const {
return Box(Point(0,0), Point(getWidth(),getHeight())); }
SAGITTARIUS_REAL Real
Make Real visible to C. Consider letting Real lie in top namespace.
Definition: SagittariusCommon.h:136
Definition: SagittariusCommon.cpp:38