------------------------------------------------------------------------------
| 452 | |
| 453 | //------------------------------------------------------------------------------ |
| 454 | void vtkOpenGLGL2PSHelperImpl::Draw3DPath(vtkPath* path, vtkMatrix4x4* actorMatrix, |
| 455 | double rasterPos[3], unsigned char actorColor[4], vtkRenderer* ren, const char* label) |
| 456 | { |
| 457 | double translation[2] = { 0.0, 0.0 }; |
| 458 | vtkNew<vtkPath> projPath; |
| 459 | projPath->DeepCopy(path); |
| 460 | vtkOpenGLGL2PSHelperImpl::ProjectPoints(projPath->GetPoints(), ren, actorMatrix); |
| 461 | this->DrawPath(projPath, rasterPos, translation, actorColor, nullptr, 0.0, -1.f, label); |
| 462 | } |
| 463 | |
| 464 | //------------------------------------------------------------------------------ |
| 465 | void vtkOpenGLGL2PSHelperImpl::DrawImage(vtkImageData* input, double pos[3]) |
no test coverage detected