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.vtkRandomGraphSource Class Reference

vtkRandomGraphSource - a graph with random edges More...

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

List of all members.

Public Member Functions

 vtkRandomGraphSource (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkRandomGraphSource ()
 Undocumented Block.
virtual void AllowParallelEdgesOff ()
 When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.
virtual void AllowParallelEdgesOn ()
 When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.
virtual void AllowSelfLoopsOff ()
 If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.
virtual void AllowSelfLoopsOn ()
 If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.
virtual void DirectedOff ()
 When set, creates a directed graph, as opposed to an undirected graph.
virtual void DirectedOn ()
 When set, creates a directed graph, as opposed to an undirected graph.
virtual void GeneratePedigreeIdsOff ()
 Add pedigree ids to vertex and edge data.
virtual void GeneratePedigreeIdsOn ()
 Add pedigree ids to vertex and edge data.
virtual bool GetAllowParallelEdges ()
 When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.
virtual bool GetAllowSelfLoops ()
 If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.
virtual bool GetDirected ()
 When set, creates a directed graph, as opposed to an undirected graph.
virtual string GetEdgePedigreeIdArrayName ()
 The name of the edge pedigree id array. Default "edge id".
virtual double GetEdgeProbability ()
 If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.
virtual double GetEdgeProbabilityMaxValue ()
 If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.
virtual double GetEdgeProbabilityMinValue ()
 If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.
virtual string GetEdgeWeightArrayName ()
 The name of the edge weight array. Default "edge weight".
virtual bool GetGeneratePedigreeIds ()
 Add pedigree ids to vertex and edge data.
virtual bool GetIncludeEdgeWeights ()
 When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.
virtual int GetNumberOfEdges ()
 If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.
virtual int GetNumberOfEdgesMaxValue ()
 If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.
virtual int GetNumberOfEdgesMinValue ()
 If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.
virtual int GetNumberOfVertices ()
 The number of vertices in the graph.
virtual int GetNumberOfVerticesMaxValue ()
 The number of vertices in the graph.
virtual int GetNumberOfVerticesMinValue ()
 The number of vertices in the graph.
virtual int GetSeed ()
 Control the seed used for pseudo-random-number generation. This ensures that vtkRandomGraphSource can produce repeatable results.
virtual bool GetStartWithTree ()
 When set, builds a random tree structure first, then adds additional random edges.
virtual bool GetUseEdgeProbability ()
 When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.
virtual string GetVertexPedigreeIdArrayName ()
 The name of the vertex pedigree id array. Default "vertex id".
virtual void IncludeEdgeWeightsOff ()
 When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.
virtual void IncludeEdgeWeightsOn ()
 When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.
override int IsA (string type)
 Undocumented Block.
new vtkRandomGraphSource NewInstance ()
 Undocumented Block.
virtual void SetAllowParallelEdges (bool _arg)
 When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.
virtual void SetAllowSelfLoops (bool _arg)
 If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.
virtual void SetDirected (bool _arg)
 When set, creates a directed graph, as opposed to an undirected graph.
virtual void SetEdgePedigreeIdArrayName (string _arg)
 The name of the edge pedigree id array. Default "edge id".
virtual void SetEdgeProbability (double _arg)
 If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.
virtual void SetEdgeWeightArrayName (string _arg)
 The name of the edge weight array. Default "edge weight".
virtual void SetGeneratePedigreeIds (bool _arg)
 Add pedigree ids to vertex and edge data.
virtual void SetIncludeEdgeWeights (bool _arg)
 When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.
virtual void SetNumberOfEdges (int _arg)
 If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.
virtual void SetNumberOfVertices (int _arg)
 The number of vertices in the graph.
virtual void SetSeed (int _arg)
 Control the seed used for pseudo-random-number generation. This ensures that vtkRandomGraphSource can produce repeatable results.
virtual void SetStartWithTree (bool _arg)
 When set, builds a random tree structure first, then adds additional random edges.
virtual void SetUseEdgeProbability (bool _arg)
 When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.
virtual void SetVertexPedigreeIdArrayName (string _arg)
 The name of the vertex pedigree id array. Default "vertex id".
virtual void StartWithTreeOff ()
 When set, builds a random tree structure first, then adds additional random edges.
virtual void StartWithTreeOn ()
 When set, builds a random tree structure first, then adds additional random edges.
virtual void UseEdgeProbabilityOff ()
 When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.
virtual void UseEdgeProbabilityOn ()
 When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.

Static Public Member Functions

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

Public Attributes

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

Static Public Attributes

static new readonly string MRClassNameKey = "20vtkRandomGraphSource"
 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 vtkRandomGraphSource_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkRandomGraphSource_AllowParallelEdgesOff_01 (HandleRef pThis)
static internal void vtkRandomGraphSource_AllowParallelEdgesOn_02 (HandleRef pThis)
static internal void vtkRandomGraphSource_AllowSelfLoopsOff_03 (HandleRef pThis)
static internal void vtkRandomGraphSource_AllowSelfLoopsOn_04 (HandleRef pThis)
static internal void vtkRandomGraphSource_DirectedOff_05 (HandleRef pThis)
static internal void vtkRandomGraphSource_DirectedOn_06 (HandleRef pThis)
static internal void vtkRandomGraphSource_GeneratePedigreeIdsOff_07 (HandleRef pThis)
static internal void vtkRandomGraphSource_GeneratePedigreeIdsOn_08 (HandleRef pThis)
static internal byte vtkRandomGraphSource_GetAllowParallelEdges_09 (HandleRef pThis)
static internal byte vtkRandomGraphSource_GetAllowSelfLoops_10 (HandleRef pThis)
static internal byte vtkRandomGraphSource_GetDirected_11 (HandleRef pThis)
static internal IntPtr vtkRandomGraphSource_GetEdgePedigreeIdArrayName_12 (HandleRef pThis)
static internal double vtkRandomGraphSource_GetEdgeProbability_13 (HandleRef pThis)
static internal double vtkRandomGraphSource_GetEdgeProbabilityMaxValue_14 (HandleRef pThis)
static internal double vtkRandomGraphSource_GetEdgeProbabilityMinValue_15 (HandleRef pThis)
static internal IntPtr vtkRandomGraphSource_GetEdgeWeightArrayName_16 (HandleRef pThis)
static internal byte vtkRandomGraphSource_GetGeneratePedigreeIds_17 (HandleRef pThis)
static internal byte vtkRandomGraphSource_GetIncludeEdgeWeights_18 (HandleRef pThis)
static internal int vtkRandomGraphSource_GetNumberOfEdges_19 (HandleRef pThis)
static internal int vtkRandomGraphSource_GetNumberOfEdgesMaxValue_20 (HandleRef pThis)
static internal int vtkRandomGraphSource_GetNumberOfEdgesMinValue_21 (HandleRef pThis)
static internal int vtkRandomGraphSource_GetNumberOfVertices_22 (HandleRef pThis)
static internal int vtkRandomGraphSource_GetNumberOfVerticesMaxValue_23 (HandleRef pThis)
static internal int vtkRandomGraphSource_GetNumberOfVerticesMinValue_24 (HandleRef pThis)
static internal int vtkRandomGraphSource_GetSeed_25 (HandleRef pThis)
static internal byte vtkRandomGraphSource_GetStartWithTree_26 (HandleRef pThis)
static internal byte vtkRandomGraphSource_GetUseEdgeProbability_27 (HandleRef pThis)
static internal IntPtr vtkRandomGraphSource_GetVertexPedigreeIdArrayName_28 (HandleRef pThis)
static internal void vtkRandomGraphSource_IncludeEdgeWeightsOff_29 (HandleRef pThis)
static internal void vtkRandomGraphSource_IncludeEdgeWeightsOn_30 (HandleRef pThis)
static internal int vtkRandomGraphSource_IsA_31 (HandleRef pThis, string type)
static internal int vtkRandomGraphSource_IsTypeOf_32 (string type)
static internal IntPtr vtkRandomGraphSource_NewInstance_34 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkRandomGraphSource_SafeDownCast_35 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal void vtkRandomGraphSource_SetAllowParallelEdges_36 (HandleRef pThis, byte _arg)
static internal void vtkRandomGraphSource_SetAllowSelfLoops_37 (HandleRef pThis, byte _arg)
static internal void vtkRandomGraphSource_SetDirected_38 (HandleRef pThis, byte _arg)
static internal void vtkRandomGraphSource_SetEdgePedigreeIdArrayName_39 (HandleRef pThis, string _arg)
static internal void vtkRandomGraphSource_SetEdgeProbability_40 (HandleRef pThis, double _arg)
static internal void vtkRandomGraphSource_SetEdgeWeightArrayName_41 (HandleRef pThis, string _arg)
static internal void vtkRandomGraphSource_SetGeneratePedigreeIds_42 (HandleRef pThis, byte _arg)
static internal void vtkRandomGraphSource_SetIncludeEdgeWeights_43 (HandleRef pThis, byte _arg)
static internal void vtkRandomGraphSource_SetNumberOfEdges_44 (HandleRef pThis, int _arg)
static internal void vtkRandomGraphSource_SetNumberOfVertices_45 (HandleRef pThis, int _arg)
static internal void vtkRandomGraphSource_SetSeed_46 (HandleRef pThis, int _arg)
static internal void vtkRandomGraphSource_SetStartWithTree_47 (HandleRef pThis, byte _arg)
static internal void vtkRandomGraphSource_SetUseEdgeProbability_48 (HandleRef pThis, byte _arg)
static internal void vtkRandomGraphSource_SetVertexPedigreeIdArrayName_49 (HandleRef pThis, string _arg)
static internal void vtkRandomGraphSource_StartWithTreeOff_50 (HandleRef pThis)
static internal void vtkRandomGraphSource_StartWithTreeOn_51 (HandleRef pThis)
static internal void vtkRandomGraphSource_UseEdgeProbabilityOff_52 (HandleRef pThis)
static internal void vtkRandomGraphSource_UseEdgeProbabilityOn_53 (HandleRef pThis)

Static Private Member Functions

static vtkRandomGraphSource ()
 Automatically generated type registration mechanics.

Detailed Description

vtkRandomGraphSource - a graph with random edges

Description Generates a graph with a specified number of vertices, with the density of edges specified by either an exact number of edges or the probability of an edge. You may additionally specify whether to begin with a random tree (which enforces graph connectivity).


Constructor & Destructor Documentation

Automatically generated type registration mechanics.

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

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

Undocumented Block.


Member Function Documentation

When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.

When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.

If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.

If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.

When set, creates a directed graph, as opposed to an undirected graph.

virtual void Kitware.VTK.vtkRandomGraphSource.DirectedOn ( ) [virtual]

When set, creates a directed graph, as opposed to an undirected graph.

override void Kitware.VTK.vtkRandomGraphSource.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.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.

Add pedigree ids to vertex and edge data.

Add pedigree ids to vertex and edge data.

When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.

If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.

When set, creates a directed graph, as opposed to an undirected graph.

The name of the edge pedigree id array. Default "edge id".

If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.

If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.

If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.

The name of the edge weight array. Default "edge weight".

Add pedigree ids to vertex and edge data.

When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.

If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.

If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.

If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.

The number of vertices in the graph.

The number of vertices in the graph.

The number of vertices in the graph.

virtual int Kitware.VTK.vtkRandomGraphSource.GetSeed ( ) [virtual]

Control the seed used for pseudo-random-number generation. This ensures that vtkRandomGraphSource can produce repeatable results.

When set, builds a random tree structure first, then adds additional random edges.

When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.

The name of the vertex pedigree id array. Default "vertex id".

When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.

When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.

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

Undocumented Block.

Reimplemented from Kitware.VTK.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.

Here is the call graph for this function:

virtual void Kitware.VTK.vtkRandomGraphSource.SetAllowParallelEdges ( bool  _arg) [virtual]

When set, multiple edges from a source to a target vertex are allowed. The default is to forbid such loops.

virtual void Kitware.VTK.vtkRandomGraphSource.SetAllowSelfLoops ( bool  _arg) [virtual]

If this flag is set to true, edges where the source and target vertex are the same can be generated. The default is to forbid such loops.

virtual void Kitware.VTK.vtkRandomGraphSource.SetDirected ( bool  _arg) [virtual]

When set, creates a directed graph, as opposed to an undirected graph.

virtual void Kitware.VTK.vtkRandomGraphSource.SetEdgePedigreeIdArrayName ( string  _arg) [virtual]

The name of the edge pedigree id array. Default "edge id".

virtual void Kitware.VTK.vtkRandomGraphSource.SetEdgeProbability ( double  _arg) [virtual]

If UseEdgeProbability is on, adds an edge with this probability between 0 and 1 for each pair of vertices in the graph.

virtual void Kitware.VTK.vtkRandomGraphSource.SetEdgeWeightArrayName ( string  _arg) [virtual]

The name of the edge weight array. Default "edge weight".

virtual void Kitware.VTK.vtkRandomGraphSource.SetGeneratePedigreeIds ( bool  _arg) [virtual]

Add pedigree ids to vertex and edge data.

virtual void Kitware.VTK.vtkRandomGraphSource.SetIncludeEdgeWeights ( bool  _arg) [virtual]

When set, includes edge weights in an array named "edge_weights". Defaults to off. Weights are random between 0 and 1.

virtual void Kitware.VTK.vtkRandomGraphSource.SetNumberOfEdges ( int  _arg) [virtual]

If UseEdgeProbability is off, creates a graph with the specified number of edges. Duplicate (parallel) edges are allowed.

virtual void Kitware.VTK.vtkRandomGraphSource.SetNumberOfVertices ( int  _arg) [virtual]

The number of vertices in the graph.

virtual void Kitware.VTK.vtkRandomGraphSource.SetSeed ( int  _arg) [virtual]

Control the seed used for pseudo-random-number generation. This ensures that vtkRandomGraphSource can produce repeatable results.

virtual void Kitware.VTK.vtkRandomGraphSource.SetStartWithTree ( bool  _arg) [virtual]

When set, builds a random tree structure first, then adds additional random edges.

virtual void Kitware.VTK.vtkRandomGraphSource.SetUseEdgeProbability ( bool  _arg) [virtual]

When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.

virtual void Kitware.VTK.vtkRandomGraphSource.SetVertexPedigreeIdArrayName ( string  _arg) [virtual]

The name of the vertex pedigree id array. Default "vertex id".

When set, builds a random tree structure first, then adds additional random edges.

When set, builds a random tree structure first, then adds additional random edges.

When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.

When set, uses the EdgeProbability parameter to determine the density of edges. Otherwise, NumberOfEdges is used.

static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_AllowParallelEdgesOff_01 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_AllowParallelEdgesOn_02 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_AllowSelfLoopsOff_03 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_AllowSelfLoopsOn_04 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_DirectedOff_05 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_DirectedOn_06 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GeneratePedigreeIdsOff_07 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GeneratePedigreeIdsOn_08 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetAllowParallelEdges_09 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetAllowSelfLoops_10 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetDirected_11 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetEdgePedigreeIdArrayName_12 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetEdgeProbability_13 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetEdgeProbabilityMaxValue_14 ( HandleRef  pThis) [private]
static internal double Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetEdgeProbabilityMinValue_15 ( HandleRef  pThis) [private]
static internal IntPtr Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetEdgeWeightArrayName_16 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetGeneratePedigreeIds_17 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetIncludeEdgeWeights_18 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetNumberOfEdges_19 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetNumberOfVertices_22 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetSeed_25 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetStartWithTree_26 ( HandleRef  pThis) [private]
static internal byte Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_GetUseEdgeProbability_27 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_IncludeEdgeWeightsOff_29 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_IncludeEdgeWeightsOn_30 ( HandleRef  pThis) [private]
static internal int Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_IsA_31 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_IsTypeOf_32 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_NewInstance_34 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SafeDownCast_35 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetAllowParallelEdges_36 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetAllowSelfLoops_37 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetDirected_38 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetEdgePedigreeIdArrayName_39 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetEdgeProbability_40 ( HandleRef  pThis,
double  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetEdgeWeightArrayName_41 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetGeneratePedigreeIds_42 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetIncludeEdgeWeights_43 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetNumberOfEdges_44 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetNumberOfVertices_45 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetSeed_46 ( HandleRef  pThis,
int  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetStartWithTree_47 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetUseEdgeProbability_48 ( HandleRef  pThis,
byte  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_SetVertexPedigreeIdArrayName_49 ( HandleRef  pThis,
string  _arg 
) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_StartWithTreeOff_50 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_StartWithTreeOn_51 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_UseEdgeProbabilityOff_52 ( HandleRef  pThis) [private]
static internal void Kitware.VTK.vtkRandomGraphSource.vtkRandomGraphSource_UseEdgeProbabilityOn_53 ( HandleRef  pThis) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkRandomGraphSource.MRClassNameKey = "20vtkRandomGraphSource" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.

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

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkGraphAlgorithm.

Reimplemented in Kitware.VTK.vtkGeoRandomGraphSource.


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