| 114 | { |
| 115 | public: |
| 116 | PointViewMesh(PointView& view, bool color) : |
| 117 | m_view(view), m_mesh(*(m_view.createMesh("poisson"))), m_doColor(color) |
| 118 | { |
| 119 | resetIterator(); |
| 120 | } |
| 121 | |
| 122 | virtual int pointCount() const |
| 123 | { return static_cast<int>(m_view.size()); } |
nothing calls this directly
no test coverage detected