Esempio n. 1
0
 bool hasInfrared() const
 {
     PointFormat f = pointFormat();
     return f == 8;
 }
Esempio n. 2
0
 bool hasWave() const
 {
     PointFormat f = pointFormat();
     return f == 4 || f == 5 || f == 9 || f == 10;
 }
Esempio n. 3
0
 bool hasColor() const
 {
     PointFormat f = pointFormat();
     return f == 2 || f == 3 || f == 5 || f == 7 || f == 8 || f == 10;
 }
Esempio n. 4
0
 bool has14Format() const
 {
     PointFormat f = pointFormat();
     return f > 5;
 }
Esempio n. 5
0
 bool hasTime() const
 {
     PointFormat f = pointFormat();
     return f == 1 || f >= 3;
 }