------------------------------------------------------------------------------
| 2525 | |
| 2526 | //------------------------------------------------------------------------------ |
| 2527 | bool vtkOpenGLPolyDataMapper::DrawingTubes(vtkOpenGLHelper& cellBO, vtkActor* actor) |
| 2528 | { |
| 2529 | return (actor->GetProperty()->GetRenderLinesAsTubes() && |
| 2530 | actor->GetProperty()->GetLineWidth() > 1.0 && |
| 2531 | this->GetOpenGLMode(actor->GetProperty()->GetRepresentation(), cellBO.PrimitiveType) == |
| 2532 | GL_LINES); |
| 2533 | } |
| 2534 | |
| 2535 | //------------------------------------------------------------------------------ |
| 2536 | bool vtkOpenGLPolyDataMapper::DrawingPoints(vtkOpenGLHelper& cellBO, vtkActor* actor) |
no test coverage detected