C# 클래스 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.
상속: IFiniteElementNode
파일 보기 프로젝트 열기: iainsproat/SharpFE 1 사용 예제들

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
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.

메소드 상세

Equals() 공개 메소드

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

Equals() 공개 메소드

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
리턴 bool

GetHashCode() 공개 메소드

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

ToString() 공개 메소드

Overrides the ToString method
public ToString ( ) : string
리턴 string

operator() 공개 정적인 메소드

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