19 FxGrid(
const XYMap& xyMap):
Fx(xyMap.getTotal()), mXyMap(xyMap) {}
20 uint16_t xyMap(uint16_t x, uint16_t y)
const {
21 return mXyMap.mapToIndex(x, y);
23 uint16_t getHeight()
const {
return mXyMap.getHeight(); }
24 uint16_t getWidth()
const {
return mXyMap.getWidth(); }
25 void setXYMap(
const XYMap& xyMap) { mXyMap = xyMap; }
26 XYMap& getXYMap() {
return mXyMap; }
27 const XYMap& getXYMap()
const {
return mXyMap; }