Ejemplo n.º 1
0
 irange getYRange() const { return fill->getData().yrange; }
Ejemplo n.º 2
0
 bool isFixedSize() const { return fill->getData().has_grid; }  
Ejemplo n.º 3
0
 virtual const Lattice& getLattice() const {
   if( lattice && lattice->hasData() ){
     return lattice->getData();
   }
   throw std::runtime_error( "Called getLattice() on a cell that hasn't got one" );
 }
Ejemplo n.º 4
0
 const Transform& getTransform() const { return tr->getData(); }
Ejemplo n.º 5
0
 virtual const Fill& getFill() const { 
   if( fill && fill->hasData() ){
     return fill->getData();
   }
   throw std::runtime_error( "Called getFill() on an unfilled cell");
 }