ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkFrustumCoverageCuller Class Reference

vtkFrustumCoverageCuller - cull props based on frustum coverage More...

Inheritance diagram for Kitware.VTK.vtkFrustumCoverageCuller:
[legend]
Collaboration diagram for Kitware.VTK.vtkFrustumCoverageCuller:
[legend]

List of all members.

Public Member Functions

 vtkFrustumCoverageCuller (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkFrustumCoverageCuller ()
 Undocumented Block.
virtual double GetMaximumCoverage ()
 Set/Get the maximum coverage - props with more coverage than this are given an allocated render time of 1.0 (the maximum)
virtual double GetMinimumCoverage ()
 Set/Get the minimum coverage - props with less coverage than this are given no time to render (they are culled)
virtual int GetSortingStyle ()
 Set the sorting style - none, front-to-back or back-to-front The default is none.
string GetSortingStyleAsString ()
 Set the sorting style - none, front-to-back or back-to-front The default is none.
virtual int GetSortingStyleMaxValue ()
 Set the sorting style - none, front-to-back or back-to-front The default is none.
virtual int GetSortingStyleMinValue ()
 Set the sorting style - none, front-to-back or back-to-front The default is none.
override int IsA (string type)
 Undocumented Block.
new vtkFrustumCoverageCuller NewInstance ()
 Undocumented Block.
virtual void SetMaximumCoverage (double _arg)
 Set/Get the maximum coverage - props with more coverage than this are given an allocated render time of 1.0 (the maximum)
virtual void SetMinimumCoverage (double _arg)
 Set/Get the minimum coverage - props with less coverage than this are given no time to render (they are culled)
virtual void SetSortingStyle (int _arg)
 Set the sorting style - none, front-to-back or back-to-front The default is none.
void SetSortingStyleToBackToFront ()
 Set the sorting style - none, front-to-back or back-to-front The default is none.
void SetSortingStyleToFrontToBack ()
 Set the sorting style - none, front-to-back or back-to-front The default is none.
void SetSortingStyleToNone ()
 Set the sorting style - none, front-to-back or back-to-front The default is none.

Static Public Member Functions

static new vtkFrustumCoverageCuller New ()
 Undocumented Block.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkFrustumCoverageCuller SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkFrustumCoverageCuller"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "24vtkFrustumCoverageCuller"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkFrustumCoverageCuller_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal double vtkFrustumCoverageCuller_GetMaximumCoverage_01 (HandleRef pThis)
static internal double vtkFrustumCoverageCuller_GetMinimumCoverage_02 (HandleRef pThis)
static internal int vtkFrustumCoverageCuller_GetSortingStyle_03 (HandleRef pThis)
static internal IntPtr vtkFrustumCoverageCuller_GetSortingStyleAsString_04 (HandleRef pThis)
static internal int vtkFrustumCoverageCuller_GetSortingStyleMaxValue_05 (HandleRef pThis)
static internal int vtkFrustumCoverageCuller_GetSortingStyleMinValue_06 (HandleRef pThis)
static internal int vtkFrustumCoverageCuller_IsA_07 (HandleRef pThis, string type)
static internal int vtkFrustumCoverageCuller_IsTypeOf_08 (string type)
static internal IntPtr vtkFrustumCoverageCuller_NewInstance_10 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkFrustumCoverageCuller_SafeDownCast_11 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkFrustumCoverageCuller_SetMaximumCoverage_12 (HandleRef pThis, double _arg)
static internal void vtkFrustumCoverageCuller_SetMinimumCoverage_13 (HandleRef pThis, double _arg)
static internal void vtkFrustumCoverageCuller_SetSortingStyle_14 (HandleRef pThis, int _arg)
static internal void vtkFrustumCoverageCuller_SetSortingStyleToBackToFront_15 (HandleRef pThis)
static internal void vtkFrustumCoverageCuller_SetSortingStyleToFrontToBack_16 (HandleRef pThis)
static internal void vtkFrustumCoverageCuller_SetSortingStyleToNone_17 (HandleRef pThis)

Static Private Member Functions

static vtkFrustumCoverageCuller ()
 Automatically generated type registration mechanics.

Detailed Description

vtkFrustumCoverageCuller - cull props based on frustum coverage

Description vtkFrustumCoverageCuller will cull props based on the coverage in the view frustum. The coverage is computed by enclosing the prop in a bounding sphere, projecting that to the viewing coordinate system, then taking a slice through the view frustum at the center of the sphere. This results in a circle on the plane slice through the view frustum. This circle is enclosed in a squared, and the fraction of the plane slice that this square covers is the coverage. This is a number between 0 and 1. If the number is less than the MinumumCoverage, the allocated render time for that prop is set to zero. If it is greater than the MaximumCoverage, the allocated render time is set to 1.0. In between, a linear ramp is used to convert coverage into allocated render time.


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Undocumented Block.


Member Function Documentation

override void Kitware.VTK.vtkFrustumCoverageCuller.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkCuller.

Set/Get the maximum coverage - props with more coverage than this are given an allocated render time of 1.0 (the maximum)

Set/Get the minimum coverage - props with less coverage than this are given no time to render (they are culled)

Set the sorting style - none, front-to-back or back-to-front The default is none.

Set the sorting style - none, front-to-back or back-to-front The default is none.

Set the sorting style - none, front-to-back or back-to-front The default is none.

Set the sorting style - none, front-to-back or back-to-front The default is none.

override int Kitware.VTK.vtkFrustumCoverageCuller.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkCuller.

static new int Kitware.VTK.vtkFrustumCoverageCuller.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkCuller.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkCuller.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkCuller.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkFrustumCoverageCuller.SetMaximumCoverage ( double  _arg) [virtual]

Set/Get the maximum coverage - props with more coverage than this are given an allocated render time of 1.0 (the maximum)

virtual void Kitware.VTK.vtkFrustumCoverageCuller.SetMinimumCoverage ( double  _arg) [virtual]

Set/Get the minimum coverage - props with less coverage than this are given no time to render (they are culled)

virtual void Kitware.VTK.vtkFrustumCoverageCuller.SetSortingStyle ( int  _arg) [virtual]

Set the sorting style - none, front-to-back or back-to-front The default is none.

Set the sorting style - none, front-to-back or back-to-front The default is none.

Set the sorting style - none, front-to-back or back-to-front The default is none.

Set the sorting style - none, front-to-back or back-to-front The default is none.

static internal double Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_GetMaximumCoverage_01 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_GetMinimumCoverage_02 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_IsA_07 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_IsTypeOf_08 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_NewInstance_10 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_SafeDownCast_11 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_SetMaximumCoverage_12 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_SetMinimumCoverage_13 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkFrustumCoverageCuller.vtkFrustumCoverageCuller_SetSortingStyle_14 ( HandleRef  pThis,
int  _arg 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkFrustumCoverageCuller.MRClassNameKey = "24vtkFrustumCoverageCuller" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkCuller.

new const string Kitware.VTK.vtkFrustumCoverageCuller.MRFullTypeName = "Kitware.VTK.vtkFrustumCoverageCuller"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkCuller.


The documentation for this class was generated from the following file: