|
ParaView
|
#include <vtkPVRenderView.h>


vtkRenderViewBase equivalent that is specialized for ParaView. Eventually vtkRenderViewBase should have a abstract base-class that this will derive from instead of vtkRenderViewBase since we do not use the labelling/icon stuff from vtkRenderViewBase.
FIXME: Following is temporary -- until I decide if that's necessary at all. vtkPVRenderView has two types of public methods: 1. -- must be called on all processes with exactly the same values. 2. -- can be called only on the "client" process. These typically encapsulate client-side logic such as deciding if we are doing remote rendering or local rendering etc.
Utkarsh: Try to use methods that will be called on all processes for most decision making similar to what ResetCamera() does. This will avoid the need to have special code in vtkSMRenderViewProxy and will simplify life when creating new views. "Move logic to VTK" -- that's the Mantra.
Definition at line 66 of file vtkPVRenderView.h.
| INTERACTION_MODE_3D | |
| INTERACTION_MODE_2D | |
| INTERACTION_MODE_SELECTION | |
| INTERACTION_MODE_ZOOM |
Definition at line 81 of file vtkPVRenderView.h.
| vtkPVRenderView::vtkPVRenderView | ( | ) | [protected] |
| vtkPVRenderView::~vtkPVRenderView | ( | ) | [protected] |
| static vtkPVRenderView* vtkPVRenderView::New | ( | ) | [static] |
Reimplemented from vtkView.
| virtual const char* vtkPVRenderView::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkPVView.
| static vtkPVRenderView* vtkPVRenderView::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkPVView.
| void vtkPVRenderView::PrintSelf | ( | ostream & | os, |
| vtkIndent | indent | ||
| ) | [virtual] |
Reimplemented from vtkPVView.
| static bool vtkPVRenderView::IsRemoteRenderingAllowed | ( | ) | [static] |
This allow the user to overcome the system capability and simply prevent remote rendering.
| static void vtkPVRenderView::AllowRemoteRendering | ( | bool | enable | ) | [static] |
This allow the user to overcome the system capability and simply prevent remote rendering.
| virtual void vtkPVRenderView::SetInteractionMode | ( | int | mode | ) | [virtual] |
Get/Set the interaction mode. Default is INTERACTION_MODE_3D. If INTERACTION_MODE_SELECTION is selected, then whenever the user drags and creates a selection region, this class will fire a vtkCommand::SelectionChangedEvent event with the selection region as the argument. - this must be called on all processes, however it will have any effect only the driver processes i.e. the process with the interactor.
| virtual int vtkPVRenderView::GetInteractionMode | ( | ) | [virtual] |
Get/Set the interaction mode. Default is INTERACTION_MODE_3D. If INTERACTION_MODE_SELECTION is selected, then whenever the user drags and creates a selection region, this class will fire a vtkCommand::SelectionChangedEvent event with the selection region as the argument. - this must be called on all processes, however it will have any effect only the driver processes i.e. the process with the interactor.
| virtual void vtkPVRenderView::Initialize | ( | unsigned int | id | ) | [virtual] |
Initialize the view with an identifier. Unless noted otherwise, this method must be called before calling any other methods on this class.
Reimplemented from vtkPVView.
| virtual vtkRenderer* vtkPVRenderView::GetNonCompositedRenderer | ( | ) | [virtual] |
Gets the non-composited renderer for this view. This is typically used for labels, 2D annotations etc.
| vtkRenderer* vtkPVRenderView::GetRenderer | ( | ) |
Gets the non-composited renderer for this view. This is typically used for labels, 2D annotations etc.
| vtkCamera* vtkPVRenderView::GetActiveCamera | ( | ) |
Get/Set the active camera. The active camera is set on both the composited and non-composited renderer.
| virtual void vtkPVRenderView::SetActiveCamera | ( | vtkCamera * | ) | [virtual] |
Get/Set the active camera. The active camera is set on both the composited and non-composited renderer.
| vtkRenderWindow* vtkPVRenderView::GetRenderWindow | ( | ) |
Returns the render window.
| void vtkPVRenderView::AddPropToRenderer | ( | vtkProp * | ) |
It's possible to directly add vtkProps to a view. This API provides access to add props to the 3D/composited renderer. Note that if you add props in this way, they will not be included in the computations for geometry-size which is used to make decisions whether to use LOD or remote rendering etc. Nor can such props participate in data-redistribution when volume rendering or translucent rendering. As a rule of thumb only add props not directly connected to input data using this API such as scalar bars, cube axes etc.
| void vtkPVRenderView::RemovePropFromRenderer | ( | vtkProp * | ) |
It's possible to directly add vtkProps to a view. This API provides access to add props to the 3D/composited renderer. Note that if you add props in this way, they will not be included in the computations for geometry-size which is used to make decisions whether to use LOD or remote rendering etc. Nor can such props participate in data-redistribution when volume rendering or translucent rendering. As a rule of thumb only add props not directly connected to input data using this API such as scalar bars, cube axes etc.
| void vtkPVRenderView::AddPropToNonCompositedRenderer | ( | vtkProp * | ) |
It's possible to directly add vtkProps to a view. This API provides access to add props to the non-composited renderer. Note that if you add props in this way, they will not be included in the computations for geometry-size which is used to make decisions whether to use LOD or remote rendering etc. Nor can such props participate in data-redistribution when volume rendering or translucent rendering. As a rule of thumb only add props not directly connected to input data using this API such as scalar bars, cube axes etc.
| void vtkPVRenderView::RemovePropFromNonCompositedRenderer | ( | vtkProp * | ) |
It's possible to directly add vtkProps to a view. This API provides access to add props to the non-composited renderer. Note that if you add props in this way, they will not be included in the computations for geometry-size which is used to make decisions whether to use LOD or remote rendering etc. Nor can such props participate in data-redistribution when volume rendering or translucent rendering. As a rule of thumb only add props not directly connected to input data using this API such as scalar bars, cube axes etc.
| virtual vtkPVGenericRenderWindowInteractor* vtkPVRenderView::GetInteractor | ( | ) | [virtual] |
Returns the interactor. .
| virtual vtkPVInteractorStyle* vtkPVRenderView::GetInteractorStyle | ( | ) | [virtual] |
Returns the interactor style.
| void vtkPVRenderView::ResetCamera | ( | ) |
Resets the active camera using collective prop-bounds.
| void vtkPVRenderView::ResetCamera | ( | double | bounds[6] | ) |
Resets the active camera using collective prop-bounds.
| virtual void vtkPVRenderView::StillRender | ( | ) | [virtual] |
Triggers a high-resolution render.
Implements vtkPVView.
| virtual void vtkPVRenderView::InteractiveRender | ( | ) | [virtual] |
Triggers a interactive render. Based on the settings on the view, this may result in a low-resolution rendering or a simplified geometry rendering.
Implements vtkPVView.
| virtual void vtkPVRenderView::SetStillRenderImageReductionFactor | ( | int | ) | [virtual] |
Get/Set the reduction-factor to use when for StillRender(). This is typically set to 1, but in some cases with terrible connectivity or really large displays, one may want to use a sub-sampled image even for StillRender(). This is set it number of pixels to be sub-sampled by. Note that image reduction factors have no effect when in built-in mode.
| virtual int vtkPVRenderView::GetStillRenderImageReductionFactor | ( | ) | [virtual] |
Get/Set the reduction-factor to use when for StillRender(). This is typically set to 1, but in some cases with terrible connectivity or really large displays, one may want to use a sub-sampled image even for StillRender(). This is set it number of pixels to be sub-sampled by. Note that image reduction factors have no effect when in built-in mode.
| virtual void vtkPVRenderView::SetInteractiveRenderImageReductionFactor | ( | int | ) | [virtual] |
Get/Set the reduction-factor to use when for InteractiveRender(). This is set it number of pixels to be sub-sampled by. Note that image reduction factors have no effect when in built-in mode.
| virtual int vtkPVRenderView::GetInteractiveRenderImageReductionFactor | ( | ) | [virtual] |
Get/Set the reduction-factor to use when for InteractiveRender(). This is set it number of pixels to be sub-sampled by. Note that image reduction factors have no effect when in built-in mode.
| virtual void vtkPVRenderView::SetRemoteRenderingThreshold | ( | double | ) | [virtual] |
Get/Set the data-size in megabytes above which remote-rendering should be used, if possible.
| virtual double vtkPVRenderView::GetRemoteRenderingThreshold | ( | ) | [virtual] |
Get/Set the data-size in megabytes above which remote-rendering should be used, if possible.
| virtual void vtkPVRenderView::SetLODRenderingThreshold | ( | double | ) | [virtual] |
Get/Set the data-size in megabytes above which LOD rendering should be used, if possible.
| virtual double vtkPVRenderView::GetLODRenderingThreshold | ( | ) | [virtual] |
Get/Set the data-size in megabytes above which LOD rendering should be used, if possible.
| virtual void vtkPVRenderView::SetLODResolution | ( | double | ) | [virtual] |
Get/Set the LOD resolution. This affects the size of the grid used for quadric clustering, for example. 1.0 implies maximum resolution while 0 implies minimum resolution.
| virtual double vtkPVRenderView::GetLODResolution | ( | ) | [virtual] |
Get/Set the LOD resolution. This affects the size of the grid used for quadric clustering, for example. 1.0 implies maximum resolution while 0 implies minimum resolution.
| virtual void vtkPVRenderView::SetClientOutlineThreshold | ( | double | ) | [virtual] |
This threshold is only applicable when in client-server mode. It is the size of geometry in megabytes beyond which the view should not deliver geometry to the client, but only outlines.
| virtual double vtkPVRenderView::GetClientOutlineThreshold | ( | ) | [virtual] |
This threshold is only applicable when in client-server mode. It is the size of geometry in megabytes beyond which the view should not deliver geometry to the client, but only outlines.
| void vtkPVRenderView::ConfigureCompressor | ( | const char * | configuration | ) |
Passes the compressor configuration to the client-server synchronizer, if any. This affects the image compression used to relay images back to the client. See vtkPVClientServerSynchronizedRenderers::ConfigureCompressor() for details.
| virtual void vtkPVRenderView::ResetCameraClippingRange | ( | ) | [virtual] |
Resets the clipping range. One does not need to call this directly ever. It is called periodically by the vtkRenderer to reset the camera range.
| void vtkPVRenderView::SetUseLightKit | ( | bool | enable | ) |
Enable/Disable light kit.
| virtual bool vtkPVRenderView::GetUseLightKit | ( | ) | [virtual] |
Enable/Disable light kit.
| virtual void vtkPVRenderView::UseLightKitOn | ( | ) | [virtual] |
Enable/Disable light kit.
| virtual void vtkPVRenderView::UseLightKitOff | ( | ) | [virtual] |
Enable/Disable light kit.
| static vtkInformationIntegerKey* vtkPVRenderView::GEOMETRY_SIZE | ( | ) | [static] |
vtkDataRepresentation can use this key to publish meta-data about geometry size in the VIEW_REQUEST_METADATA pass. If this meta-data is available, then the view can make informed decisions about where to render/whether to use LOD etc.
| static vtkInformationIntegerKey* vtkPVRenderView::DATA_DISTRIBUTION_MODE | ( | ) | [static] |
| static vtkInformationIntegerKey* vtkPVRenderView::USE_LOD | ( | ) | [static] |
| static vtkInformationIntegerKey* vtkPVRenderView::DELIVER_LOD_TO_CLIENT | ( | ) | [static] |
| static vtkInformationIntegerKey* vtkPVRenderView::DELIVER_OUTLINE_TO_CLIENT | ( | ) | [static] |
| static vtkInformationIntegerKey* vtkPVRenderView::DELIVER_OUTLINE_TO_CLIENT_FOR_LOD | ( | ) | [static] |
| static vtkInformationDoubleKey* vtkPVRenderView::LOD_RESOLUTION | ( | ) | [static] |
| static vtkInformationObjectBaseKey* vtkPVRenderView::REDISTRIBUTABLE_DATA_PRODUCER | ( | ) | [static] |
This view supports ordered compositing, if needed. When ordered compositing needs to be employed, this view requires that all representations redistribute the data using a KdTree. To tell the view of the vtkAlgorithm that is producing some redistributable data, representation can use this key in their REQUEST_INFORMATION() pass to put the producer in the outInfo.
| static vtkInformationIntegerKey* vtkPVRenderView::NEED_ORDERED_COMPOSITING | ( | ) | [static] |
Representation can publish this key in their REQUEST_INFORMATION() pass to indicate that the representation needs ordered compositing.
| static vtkInformationObjectBaseKey* vtkPVRenderView::KD_TREE | ( | ) | [static] |
This is used by the view in the REQUEST_RENDER() pass to tell the representations the KdTree, if any to use for distributing the data. If none is present, then representations should not redistribute the data.
| static vtkInformationIntegerKey* vtkPVRenderView::NEEDS_DELIVERY | ( | ) | [static] |
Placed in REQUEST_PREPARE_FOR_RENDER() stage to indicate that the representation needs delivery.
| void vtkPVRenderView::SelectCells | ( | int | region[4] | ) |
Make a selection. This will result in setting up of this->LastSelection which can be accessed using GetLastSelection().
Make a selection. This will result in setting up of this->LastSelection which can be accessed using GetLastSelection().
Definition at line 300 of file vtkPVRenderView.h.
| void vtkPVRenderView::SelectPoints | ( | int | region[4] | ) |
Make a selection. This will result in setting up of this->LastSelection which can be accessed using GetLastSelection().
Make a selection. This will result in setting up of this->LastSelection which can be accessed using GetLastSelection().
Definition at line 306 of file vtkPVRenderView.h.
Make a selection. This will result in setting up of this->LastSelection which can be accessed using GetLastSelection().
| virtual vtkSelection* vtkPVRenderView::GetLastSelection | ( | ) | [virtual] |
Provides access to the last selection.
| virtual void vtkPVRenderView::SetUseInteractiveRenderingForSceenshots | ( | bool | ) | [virtual] |
Set or get whether capture should be done as StillRender or InteractiveRender when capturing screenshots.
| virtual void vtkPVRenderView::UseInteractiveRenderingForSceenshotsOn | ( | ) | [virtual] |
Set or get whether capture should be done as StillRender or InteractiveRender when capturing screenshots.
| virtual void vtkPVRenderView::UseInteractiveRenderingForSceenshotsOff | ( | ) | [virtual] |
Set or get whether capture should be done as StillRender or InteractiveRender when capturing screenshots.
| virtual bool vtkPVRenderView::GetUseInteractiveRenderingForSceenshots | ( | ) | [virtual] |
Set or get whether capture should be done as StillRender or InteractiveRender when capturing screenshots.
| virtual void vtkPVRenderView::SetUseOffscreenRenderingForScreenshots | ( | bool | ) | [virtual] |
Set or get whether offscreen rendering should be used during CaptureWindow calls. On Apple machines, this flag has no effect.
| virtual void vtkPVRenderView::UseOffscreenRenderingForScreenshotsOn | ( | ) | [virtual] |
Set or get whether offscreen rendering should be used during CaptureWindow calls. On Apple machines, this flag has no effect.
| virtual void vtkPVRenderView::UseOffscreenRenderingForScreenshotsOff | ( | ) | [virtual] |
Set or get whether offscreen rendering should be used during CaptureWindow calls. On Apple machines, this flag has no effect.
| virtual bool vtkPVRenderView::GetUseOffscreenRenderingForScreenshots | ( | ) | [virtual] |
Set or get whether offscreen rendering should be used during CaptureWindow calls. On Apple machines, this flag has no effect.
| virtual void vtkPVRenderView::SetUseOffscreenRendering | ( | bool | ) | [virtual] |
Get/Set whether to use offscreen rendering for all rendering. This is merely a suggestion. If --use-offscreen-rendering command line option is specified, then setting this flag to 0 on that process has no effect. Setting it to true, however, will ensure that even is --use-offscreen-rendering is not specified, it will use offscreen rendering.
| virtual void vtkPVRenderView::UseOffscreenRenderingOn | ( | ) | [virtual] |
Get/Set whether to use offscreen rendering for all rendering. This is merely a suggestion. If --use-offscreen-rendering command line option is specified, then setting this flag to 0 on that process has no effect. Setting it to true, however, will ensure that even is --use-offscreen-rendering is not specified, it will use offscreen rendering.
| virtual void vtkPVRenderView::UseOffscreenRenderingOff | ( | ) | [virtual] |
Get/Set whether to use offscreen rendering for all rendering. This is merely a suggestion. If --use-offscreen-rendering command line option is specified, then setting this flag to 0 on that process has no effect. Setting it to true, however, will ensure that even is --use-offscreen-rendering is not specified, it will use offscreen rendering.
| virtual bool vtkPVRenderView::GetUseOffscreenRendering | ( | ) | [virtual] |
Get/Set whether to use offscreen rendering for all rendering. This is merely a suggestion. If --use-offscreen-rendering command line option is specified, then setting this flag to 0 on that process has no effect. Setting it to true, however, will ensure that even is --use-offscreen-rendering is not specified, it will use offscreen rendering.
| virtual bool vtkPVRenderView::GetRemoteRenderingAvailable | ( | ) | [virtual] |
Returns if remote-rendering is possible on the current group of processes.
| void vtkPVRenderView::RemoteRenderingAvailableOff | ( | ) | [inline] |
Returns if remote-rendering is possible on the current group of processes.
Definition at line 351 of file vtkPVRenderView.h.
| virtual bool vtkPVRenderView::GetUsedLODForLastRender | ( | ) | [virtual] |
Returns true if the most recent render used LOD.
| void vtkPVRenderView::InvalidateCachedSelection | ( | ) |
Invalidates cached selection. Called explicitly when view proxy thinks the cache may have become obsolete.
Returns the z-buffer value at the given location.
| void vtkPVRenderView::SetLightSwitch | ( | bool | enable | ) |
Turn on/off the default light in the 3D renderer.
| bool vtkPVRenderView::GetLightSwitch | ( | ) |
Turn on/off the default light in the 3D renderer.
| virtual void vtkPVRenderView::LightSwitchOn | ( | ) | [virtual] |
Turn on/off the default light in the 3D renderer.
| virtual void vtkPVRenderView::LightSwitchOff | ( | ) | [virtual] |
Turn on/off the default light in the 3D renderer.
| virtual void vtkPVRenderView::SetOrientationAxesInteractivity | ( | bool | ) | [virtual] |
| virtual void vtkPVRenderView::SetOrientationAxesVisibility | ( | bool | ) | [virtual] |
| virtual void vtkPVRenderView::SetCenterAxesVisibility | ( | bool | ) | [virtual] |
| void vtkPVRenderView::SetNonInteractiveRenderDelay | ( | unsigned int | seconds | ) |
| void vtkPVRenderView::SetKeyLightWarmth | ( | double | val | ) |
| void vtkPVRenderView::SetKeyLightIntensity | ( | double | val | ) |
| void vtkPVRenderView::SetKeyLightElevation | ( | double | val | ) |
| void vtkPVRenderView::SetKeyLightAzimuth | ( | double | val | ) |
| void vtkPVRenderView::SetFillLightWarmth | ( | double | val | ) |
| void vtkPVRenderView::SetKeyToFillRatio | ( | double | val | ) |
| void vtkPVRenderView::SetFillLightElevation | ( | double | val | ) |
| void vtkPVRenderView::SetFillLightAzimuth | ( | double | val | ) |
| void vtkPVRenderView::SetBackLightWarmth | ( | double | val | ) |
| void vtkPVRenderView::SetKeyToBackRatio | ( | double | val | ) |
| void vtkPVRenderView::SetBackLightElevation | ( | double | val | ) |
| void vtkPVRenderView::SetBackLightAzimuth | ( | double | val | ) |
| void vtkPVRenderView::SetHeadLightWarmth | ( | double | val | ) |
| void vtkPVRenderView::SetKeyToHeadRatio | ( | double | val | ) |
| void vtkPVRenderView::SetMaintainLuminance | ( | int | val | ) |
| void vtkPVRenderView::SetUseDepthPeeling | ( | int | val | ) |
| void vtkPVRenderView::SetMaximumNumberOfPeels | ( | int | val | ) |
| void vtkPVRenderView::SetBackgroundTexture | ( | vtkTexture * | val | ) |
| void vtkPVRenderView::SetGradientBackground | ( | int | val | ) |
| void vtkPVRenderView::SetTexturedBackground | ( | int | val | ) |
| void vtkPVRenderView::SetIntensity | ( | double | val | ) |
| void vtkPVRenderView::SetLightType | ( | int | val | ) |
| void vtkPVRenderView::SetStereoCapableWindow | ( | int | val | ) |
| void vtkPVRenderView::SetStereoRender | ( | int | val | ) |
| void vtkPVRenderView::SetStereoType | ( | int | val | ) |
| void vtkPVRenderView::SetMultiSamples | ( | int | val | ) |
| void vtkPVRenderView::SetAlphaBitPlanes | ( | int | val | ) |
| void vtkPVRenderView::SetStencilCapable | ( | int | val | ) |
| void vtkPVRenderView::Add2DManipulator | ( | vtkCameraManipulator * | val | ) |
| void vtkPVRenderView::RemoveAll2DManipulators | ( | ) |
| void vtkPVRenderView::Add3DManipulator | ( | vtkCameraManipulator * | val | ) |
| void vtkPVRenderView::RemoveAll3DManipulators | ( | ) |
| virtual void vtkPVRenderView::Update | ( | ) | [virtual] |
Overridden to synchronize information among processes whenever data changes. The vtkSMViewProxy ensures that this method is called only when something has changed on the view-proxy or one of its representations or their inputs. Hence it's okay to do some extra inter-process communication here.
Reimplemented from vtkPVView.
| virtual void vtkPVRenderView::AddRepresentationInternal | ( | vtkDataRepresentation * | rep | ) | [protected, virtual] |
Overridden to assign IDs to each representation. This assumes that representations will be added/removed in a consistent fashion across processes even in multi-client modes. The only exception is vtk3DWidgetRepresentation. However, since vtk3DWidgetRepresentation never does any data-delivery, we don't assign IDs for these, nor affect the ID uniquifier when a vtk3DWidgetRepresentation is added.
| virtual void vtkPVRenderView::RemoveRepresentationInternal | ( | vtkDataRepresentation * | rep | ) | [protected, virtual] |
Overridden to assign IDs to each representation. This assumes that representations will be added/removed in a consistent fashion across processes even in multi-client modes. The only exception is vtk3DWidgetRepresentation. However, since vtk3DWidgetRepresentation never does any data-delivery, we don't assign IDs for these, nor affect the ID uniquifier when a vtk3DWidgetRepresentation is added.
| virtual void vtkPVRenderView::PrepareForScreenshot | ( | ) | [protected, virtual] |
These methods are used to setup the view for capturing screen shots. In batch mode, since the server-side has just 1 render window, we need to make sure that the right interactor is activated, otherwise, we end up capturing images from the wrong view.
Reimplemented from vtkPVView.
| virtual void vtkPVRenderView::Render | ( | bool | interactive, |
| bool | skip_rendering | ||
| ) | [protected, virtual] |
Actual render method.
| virtual void vtkPVRenderView::DoDataDelivery | ( | bool | using_lod_rendering, |
| bool | using_remote_rendering | ||
| ) | [protected, virtual] |
Does data-delivery to the rendering nodes.
| virtual void vtkPVRenderView::GatherRepresentationInformation | ( | ) | [protected, virtual] |
Calls vtkView::REQUEST_INFORMATION() on all representations
| void vtkPVRenderView::GatherGeometrySizeInformation | ( | ) | [protected] |
Sychronizes the geometry size information on all nodes.
| void vtkPVRenderView::GatherBoundsInformation | ( | bool | using_remote_rendering | ) | [protected] |
Synchronizes bounds information on all nodes.
| bool vtkPVRenderView::GetUseDistributedRendering | ( | ) | [protected] |
Returns true if distributed rendering should be used.
| bool vtkPVRenderView::GetUseLODRendering | ( | ) | [protected] |
Returns true if LOD rendering should be used.
| bool vtkPVRenderView::GetUseOrderedCompositing | ( | ) | [protected] |
Returns true when ordered compositing is needed on the current group of processes. Note that unlike most other functions, this may return different values on different processes e.g.
| bool vtkPVRenderView::GetDeliverOutlineToClient | ( | ) | [protected] |
Returns true if outline should be delivered to client.
| void vtkPVRenderView::SetRequestDistributedRendering | ( | bool | ) | [protected] |
Update the request to enable/disable distributed rendering.
| void vtkPVRenderView::SetRequestLODRendering | ( | bool | ) | [protected] |
Update the request to enable/disable low-res rendering.
| void vtkPVRenderView::SetLastSelection | ( | vtkSelection * | ) | [protected] |
Set the last selection object.
| void vtkPVRenderView::UpdateCenterAxes | ( | double | bounds[6] | ) | [protected] |
UpdateCenterAxes(). Updates CenterAxes's scale and position.
| bool vtkPVRenderView::GetLocalProcessDoesRendering | ( | bool | using_distributed_rendering | ) | [protected] |
Returns true if the local process is doing to do actual render or displaying an image in a viewport.
| virtual void vtkPVRenderView::SynchronizeForCollaboration | ( | ) | [protected, virtual] |
Synchronizes core ivars for multi-client setups.
vtkLight* vtkPVRenderView::Light [protected] |
Definition at line 526 of file vtkPVRenderView.h.
vtkLightKit* vtkPVRenderView::LightKit [protected] |
Definition at line 527 of file vtkPVRenderView.h.
vtkRenderViewBase* vtkPVRenderView::RenderView [protected] |
Definition at line 528 of file vtkPVRenderView.h.
vtkRenderer* vtkPVRenderView::NonCompositedRenderer [protected] |
Definition at line 529 of file vtkPVRenderView.h.
Definition at line 530 of file vtkPVRenderView.h.
Definition at line 531 of file vtkPVRenderView.h.
Definition at line 532 of file vtkPVRenderView.h.
Definition at line 533 of file vtkPVRenderView.h.
vtkPVCenterAxesActor* vtkPVRenderView::CenterAxes [protected] |
Definition at line 534 of file vtkPVRenderView.h.
vtkPVAxesWidget* vtkPVRenderView::OrientationWidget [protected] |
Definition at line 535 of file vtkPVRenderView.h.
vtkPVHardwareSelector* vtkPVRenderView::Selector [protected] |
Definition at line 536 of file vtkPVRenderView.h.
vtkSelection* vtkPVRenderView::LastSelection [protected] |
Definition at line 537 of file vtkPVRenderView.h.
int vtkPVRenderView::StillRenderImageReductionFactor [protected] |
Definition at line 539 of file vtkPVRenderView.h.
Definition at line 540 of file vtkPVRenderView.h.
int vtkPVRenderView::InteractionMode [protected] |
Definition at line 541 of file vtkPVRenderView.h.
vtkPVInteractorStyle* vtkPVRenderView::TwoDInteractorStyle [protected] |
Definition at line 544 of file vtkPVRenderView.h.
Definition at line 545 of file vtkPVRenderView.h.
vtkPVInteractorStyle* vtkPVRenderView::InteractorStyle [protected] |
Definition at line 548 of file vtkPVRenderView.h.
int vtkPVRenderView::SynchronizationCounter [protected] |
Definition at line 552 of file vtkPVRenderView.h.
bool vtkPVRenderView::CounterSynchronizedSuccessfully [protected] |
Definition at line 553 of file vtkPVRenderView.h.
double vtkPVRenderView::LocalGeometrySize [protected] |
Definition at line 556 of file vtkPVRenderView.h.
double vtkPVRenderView::GeometrySize [protected] |
Definition at line 557 of file vtkPVRenderView.h.
double vtkPVRenderView::RemoteRenderingThreshold [protected] |
Definition at line 558 of file vtkPVRenderView.h.
double vtkPVRenderView::LODRenderingThreshold [protected] |
Definition at line 559 of file vtkPVRenderView.h.
double vtkPVRenderView::ClientOutlineThreshold [protected] |
Definition at line 560 of file vtkPVRenderView.h.
double vtkPVRenderView::LastComputedBounds[6] [protected] |
Definition at line 561 of file vtkPVRenderView.h.
bool vtkPVRenderView::UseOffscreenRendering [protected] |
Definition at line 562 of file vtkPVRenderView.h.
bool vtkPVRenderView::UseOffscreenRenderingForScreenshots [protected] |
Definition at line 563 of file vtkPVRenderView.h.
bool vtkPVRenderView::UseInteractiveRenderingForSceenshots [protected] |
Definition at line 564 of file vtkPVRenderView.h.
double vtkPVRenderView::LODResolution [protected] |
Definition at line 566 of file vtkPVRenderView.h.
bool vtkPVRenderView::UseLightKit [protected] |
Definition at line 567 of file vtkPVRenderView.h.
bool vtkPVRenderView::UsedLODForLastRender [protected] |
Definition at line 569 of file vtkPVRenderView.h.
bool vtkPVRenderView::RemoteRenderingAllowed [static, protected] |
Definition at line 571 of file vtkPVRenderView.h.
Definition at line 573 of file vtkPVRenderView.h.
vtkTimeStamp vtkPVRenderView::UpdateTime [protected] |
Definition at line 575 of file vtkPVRenderView.h.
vtkTimeStamp vtkPVRenderView::StillRenderTime [protected] |
Definition at line 576 of file vtkPVRenderView.h.
vtkTimeStamp vtkPVRenderView::InteractiveRenderTime [protected] |
Definition at line 577 of file vtkPVRenderView.h.
1.7.5.1