| 913 | } |
| 914 | |
| 915 | LAShistogram::LAShistogram() |
| 916 | { |
| 917 | is_active = FALSE; |
| 918 | // counter bins |
| 919 | x_bin = 0; |
| 920 | y_bin = 0; |
| 921 | z_bin = 0; |
| 922 | X_bin = 0; |
| 923 | Y_bin = 0; |
| 924 | Z_bin = 0; |
| 925 | intensity_bin = 0; |
| 926 | classification_bin = 0; |
| 927 | scan_angle_bin = 0; |
| 928 | extended_scan_angle_bin = 0; |
| 929 | return_number_bin = 0; |
| 930 | number_of_returns_bin = 0; |
| 931 | user_data_bin = 0; |
| 932 | point_source_id_bin = 0; |
| 933 | gps_time_bin = 0; |
| 934 | scanner_channel_bin = 0; |
| 935 | R_bin = 0; |
| 936 | G_bin = 0; |
| 937 | B_bin = 0; |
| 938 | I_bin = 0; |
| 939 | attribute0_bin = 0; |
| 940 | attribute1_bin = 0; |
| 941 | attribute2_bin = 0; |
| 942 | attribute3_bin = 0; |
| 943 | attribute4_bin = 0; |
| 944 | attribute5_bin = 0; |
| 945 | attribute6_bin = 0; |
| 946 | attribute7_bin = 0; |
| 947 | attribute8_bin = 0; |
| 948 | attribute9_bin = 0; |
| 949 | wavepacket_index_bin = 0; |
| 950 | wavepacket_offset_bin = 0; |
| 951 | wavepacket_size_bin = 0; |
| 952 | wavepacket_location_bin = 0; |
| 953 | // averages bins |
| 954 | classification_bin_intensity = 0; |
| 955 | classification_bin_scan_angle = 0; |
| 956 | scan_angle_bin_z = 0; |
| 957 | scan_angle_bin_intensity = 0; |
| 958 | scan_angle_bin_number_of_returns = 0; |
| 959 | return_map_bin_intensity = 0; |
| 960 | } |
| 961 | |
| 962 | LAShistogram::~LAShistogram() |
| 963 | { |
nothing calls this directly
no outgoing calls
no test coverage detected