C# Class Smrf.NodeXL.Algorithms.FanMotif

Represents a fan motif.
See the Motifs enumeration for the definition of a fan motif. Note that a fan motif includes both its HeadVertex and its LeafVertices.

This class is designed in a way that guarantees that an instance of the class is a valid fan motif.

Inheritance: Motif
Exibir arquivo Open project: 2014-sed-team3/term-project Class Usage Examples

Protected Properties

Property Type Description
m_aoLeafVertices IVertex[]
m_dArcScale Double
m_oHeadVertex IVertex

Public Methods

Method Description
AssertValid ( ) : void
FanMotif ( IVertex headVertex, IVertex leafVertices ) : System

Initializes a new instance of the FanMotif class.

Method Details

AssertValid() public method

public AssertValid ( ) : void
return void

FanMotif() public method

Initializes a new instance of the FanMotif class.
public FanMotif ( IVertex headVertex, IVertex leafVertices ) : System
headVertex IVertex /// The fan's head vertex. ///
leafVertices IVertex /// An array of two or more leaf vertices. ///
return System

Property Details

m_aoLeafVertices protected_oe property

protected IVertex[] m_aoLeafVertices
return IVertex[]

m_dArcScale protected_oe property

protected Double m_dArcScale
return Double

m_oHeadVertex protected_oe property

protected IVertex m_oHeadVertex
return IVertex