| 516 | } |
| 517 | |
| 518 | LASreaderSHP::LASreaderSHP(LASreadOpener* opener):LASreader(opener) |
| 519 | { |
| 520 | file = 0; |
| 521 | piped = false; |
| 522 | scale_factor = 0; |
| 523 | offset = 0; |
| 524 | shape_type = 0; |
| 525 | points = 0; |
| 526 | points_allocated = 0; |
| 527 | number_of_points = 0; |
| 528 | point_count = 0; |
| 529 | orig_x_offset = 0.0; |
| 530 | orig_y_offset = 0.0; |
| 531 | orig_z_offset = 0.0; |
| 532 | orig_x_scale_factor = 0.01; |
| 533 | orig_y_scale_factor = 0.01; |
| 534 | orig_z_scale_factor = 0.01; |
| 535 | } |
| 536 | |
| 537 | LASreaderSHP::~LASreaderSHP() |
| 538 | { |
nothing calls this directly
no outgoing calls
no test coverage detected