| 42 | */ |
| 43 | |
| 44 | struct LASpoint10 |
| 45 | { |
| 46 | I32 x; |
| 47 | I32 y; |
| 48 | I32 z; |
| 49 | U16 intensity; |
| 50 | U8 return_number : 3; |
| 51 | U8 number_of_returns_of_given_pulse : 3; |
| 52 | U8 scan_direction_flag : 1; |
| 53 | U8 edge_of_flight_line : 1; |
| 54 | U8 classification; |
| 55 | I8 scan_angle_rank; |
| 56 | U8 user_data; |
| 57 | U16 point_source_ID; |
| 58 | }; |
| 59 | |
| 60 | LASwriteItemCompressed_POINT10_v1::LASwriteItemCompressed_POINT10_v1(ArithmeticEncoder* enc) |
| 61 | { |
nothing calls this directly
no outgoing calls
no test coverage detected