| 173 | //------------------------------------------------------------------------ |
| 174 | template<class T, unsigned S, unsigned P> |
| 175 | inline void vertex_block_storage<T,S,P>::modify_vertex(unsigned idx, |
| 176 | double x, double y) |
| 177 | { |
| 178 | T* pv = m_coord_blocks[idx >> block_shift] + ((idx & block_mask) << 1); |
| 179 | pv[0] = T(x); |
| 180 | pv[1] = T(y); |
| 181 | } |
| 182 | |
| 183 | //------------------------------------------------------------------------ |
| 184 | template<class T, unsigned S, unsigned P> |
no outgoing calls
no test coverage detected