C# Class SharpFE.FiniteElementNode

A finite element node is a fundamental part of a finite element mesh. Nodes have a position in space. Constraints and forces can be applied to nodes.
Inheritance: IFiniteElementNode
Mostra file Open project: iainsproat/SharpFE Class Usage Examples

Public Methods

Method Description
Equals ( FiniteElementNode other ) : bool

Determines whether this node matches another node

Equals ( object obj ) : bool

Determines whether this node is equal to an object

GetHashCode ( ) : int

Returns the HashCode for this instance

ToString ( ) : string

Overrides the ToString method

operator ( ) : bool

Determines whether two nodes are unequal.

Private Methods

Method Description
FiniteElementNode ( ) : System

Prevents a default instance of the FiniteElementNode class from being created.

FiniteElementNode ( double locationAlongXAxis ) : System

Initializes a new instance of the FiniteElementNode class.

FiniteElementNode ( double locationAlongXAxis, double locationAlongYAxis ) : System

Initializes a new instance of the FiniteElementNode class.

FiniteElementNode ( double locationAlongXAxis, double locationAlongYAxis, double locationAlongZAxis ) : System

Initializes a new instance of the FiniteElementNode class.

Method Details

Equals() public method

Determines whether this node matches another node
public Equals ( FiniteElementNode other ) : bool
other FiniteElementNode the other node to compare for equality
return bool

Equals() public method

Determines whether this node is equal to an object
public Equals ( object obj ) : bool
obj object the object to compare with this node for equality
return bool

GetHashCode() public method

Returns the HashCode for this instance
public GetHashCode ( ) : int
return int

ToString() public method

Overrides the ToString method
public ToString ( ) : string
return string

operator() public static method

Determines whether two nodes are unequal.
public static operator ( ) : bool
return bool