Ignore:
Timestamp:
Aug 19, 2013, 2:44:27 AM (11 years ago)
Author:
ldelgass
Message:

Don't run ExtractUnstructuredGrid? filter on point clouds, since it only works
when there are cells in the data set.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/vizservers/vtkvis/DataSet.cpp

    r3842 r3873  
    164164        return false;
    165165
    166     if (vtkUnstructuredGrid::SafeDownCast(_dataSet) != NULL) {
     166    if (vtkUnstructuredGrid::SafeDownCast(_dataSet) != NULL && !isCloud()) {
    167167        vtkSmartPointer<vtkExtractUnstructuredGrid> filter = vtkSmartPointer<vtkExtractUnstructuredGrid>::New();
    168168#ifdef USE_VTK6
Note: See TracChangeset for help on using the changeset viewer.