示例#1
0
 irange getYRange() const { return fill->getData().yrange; }
示例#2
0
 bool isFixedSize() const { return fill->getData().has_grid; }  
示例#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" );
 }
示例#4
0
 const Transform& getTransform() const { return tr->getData(); }
示例#5
0
 virtual const Fill& getFill() const { 
   if( fill && fill->hasData() ){
     return fill->getData();
   }
   throw std::runtime_error( "Called getFill() on an unfilled cell");
 }