| 2294 | return (this->PtArray2 == nullptr); |
| 2295 | } |
| 2296 | void vtkPKdTree::SwitchDoubleBuffer() |
| 2297 | { |
| 2298 | float* temp = this->CurrentPtArray; |
| 2299 | |
| 2300 | this->CurrentPtArray = this->NextPtArray; |
| 2301 | this->NextPtArray = temp; |
| 2302 | } |
| 2303 | void vtkPKdTree::FreeDoubleBuffer() |
| 2304 | { |
| 2305 | FreeList(this->PtArray2); |