The base class for all IPointCloudAccess implementations in this sample.
 /// <summary>
 /// Constructs a new instance of the point cloud iterator.
 /// </summary>
 /// <param name="access">The access.</param>
 /// <param name="filter">The filter used for this iteration.</param>
 public PointCloudAccessBaseIterator(PointCloudAccessBase access, PointCloudFilter filter)
 {
     m_access       = access;
     m_filter       = filter;
     m_currentIndex = 0;
 }
Example #2
0
 /// <summary>
 /// Constructs a new instance of the point cloud iterator.
 /// </summary>
 /// <param name="access">The access.</param>
 /// <param name="filter">The filter used for this iteration.</param>
 public PointCloudAccessBaseIterator(PointCloudAccessBase access, PointCloudFilter filter)
 {
     m_access = access;
     m_filter = filter;
     m_currentIndex = 0;
 }