mapper.SetInput(tube.GetOutput());
mapper.ScalarVisibilityOn();
mapper.SetScalarModeToUsePointFieldData();
mapper.SelectColorArray("colors");
vtkActor actor = new vtkActor();
actor.SetMapper(mapper);
actor.GetProperty().SetOpacity(opacity);
actor.GetProperty().BackfaceCullingOff();
actor.GetProperty().FrontfaceCullingOff();
getRenderer().AddActor(actor);
getRenderer().TwoSidedLightingOn();
getRenderer().LightFollowCameraOn();
}