| 112 | bool isFunction() const FL_NOEXCEPT { return type == kFunction; } |
| 113 | bool isLUT() const FL_NOEXCEPT { return type == kLookUpTable; } |
| 114 | bool isRectangularGrid() const FL_NOEXCEPT { return type == kLineByLine; } |
| 115 | bool isSerpentineOrLineByLine() const FL_NOEXCEPT { |
| 116 | return type == kSerpentine || type == kLineByLine; |
| 117 | } |
no outgoing calls
no test coverage detected