| 3153 | } |
| 3154 | |
| 3155 | void LASreadOpener::set_offset(const F64* offset) { |
| 3156 | if (offset) { |
| 3157 | if (this->offset == 0) this->offset = new F64[3]; |
| 3158 | this->offset[0] = offset[0]; |
| 3159 | this->offset[1] = offset[1]; |
| 3160 | this->offset[2] = offset[2]; |
| 3161 | } else if (this->offset) { |
| 3162 | delete[] this->offset; |
| 3163 | this->offset = 0; |
| 3164 | } |
| 3165 | } |
| 3166 | |
| 3167 | void LASreadOpener::set_translate_intensity(const F32 translation) { |
| 3168 | this->translate_intensity = translation; |
no outgoing calls
no test coverage detected