| 54 | bool m_invert; |
| 55 | |
| 56 | void addArgs(ProgramArgs& args) |
| 57 | { |
| 58 | args.add("count", "Number of points to return from end. " |
| 59 | "If 'invert' is true, number of points to drop from the end.", |
| 60 | m_count, point_count_t(10)); |
| 61 | args.add("invert", "If true, 'count' specifies the number of points " |
| 62 | "at the end to drop.", m_invert); |
| 63 | } |
| 64 | |
| 65 | PointViewSet run(PointViewPtr view) |
| 66 | { |