Skip to content

Commit

Permalink
Deploying to gh-pages from @ 5c3170a 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal committed Oct 10, 2024
1 parent 6293afd commit 6cbfd3d
Show file tree
Hide file tree
Showing 6 changed files with 1,506 additions and 1,614 deletions.
1 change: 0 additions & 1 deletion vtkext/private/module/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ set(classes
vtkF3DPostProcessFilter
vtkF3DRenderPass
vtkF3DRenderer
vtkF3DRendererWithColoring
vtkF3DUserRenderPass
)

Expand Down
8 changes: 4 additions & 4 deletions vtkext/private/module/Testing/TestF3DRendererWithColoring.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

#include "vtkF3DConfigure.h"
#include "vtkF3DGenericImporter.h"
#include "vtkF3DRendererWithColoring.h"
#include "vtkF3DRenderer.h"

int TestF3DRendererWithColoring(int argc, char* argv[])
{
vtkNew<vtkF3DRendererWithColoring> renderer;
vtkNew<vtkF3DRenderer> renderer;
vtkNew<vtkF3DMetaImporter> importer;
vtkNew<vtkRenderWindow> window;

Expand All @@ -34,7 +34,7 @@ int TestF3DRendererWithColoring(int argc, char* argv[])
renderer->SetColoring(true, false, "Invalid", 0);
renderer->SetUseVolume(false);
renderer->UpdateActors();
renderer->CycleScalars(vtkF3DRendererWithColoring::CycleType::COMPONENT);
renderer->CycleScalars(vtkF3DRenderer::CycleType::COMPONENT);
renderer->SetUseVolume(true);
renderer->UpdateActors();

Expand All @@ -56,7 +56,7 @@ int TestF3DRendererWithColoring(int argc, char* argv[])
return EXIT_FAILURE;
}

renderer->CycleScalars(vtkF3DRendererWithColoring::CycleType::COMPONENT);
renderer->CycleScalars(vtkF3DRenderer::CycleType::COMPONENT);
if (renderer->GetColoringArrayName() != "Momentum" || renderer->GetColoringComponent() != 1)
{
std::cerr << "Unexpected coloring information after cycling component" << std::endl;
Expand Down
Loading

0 comments on commit 6cbfd3d

Please sign in to comment.