Point Cloud Library (PCL)
1.12.0
pcl
visualization
vtk
pcl_vtk_compatibility.h
1
/*
2
* SPDX-License-Identifier: BSD-3-Clause
3
*
4
* Point Cloud Library (PCL) - www.pointclouds.org
5
* Copyright (c) 2020-, Open Perception
6
*
7
* All rights reserved
8
*/
9
10
#include <vtkCellArray.h>
11
12
#ifdef VTK_CELL_ARRAY_V2
13
using
vtkCellPtsPtr = vtkIdType
const
*;
14
#else
15
using
vtkCellPtsPtr = vtkIdType*;
16
#endif
17