| 121 | typedef typename type_struct::vector2D_type const_vector2D_type; |
| 122 | |
| 123 | static vector2D_type Convert(component_type *data) |
| 124 | { |
| 125 | return (vector2D_type(data[index_x], data[index_y])); |
| 126 | } |
| 127 | |
| 128 | static const_vector2D_type Convert(const component_type *data) |
| 129 | { |
nothing calls this directly
no outgoing calls
no test coverage detected