C# 클래스 MIConvexHull.FaceConnector

A helper class used to connect faces.
파일 보기 프로젝트 열기: gusmanb/MIConvexHull 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
EdgeIndex int
Face ConvexFaceInternal
HashCode uint
Next FaceConnector
Previous FaceConnector
Vertices int[]

공개 메소드들

메소드 설명
AreConnectable ( FaceConnector a, FaceConnector b, int dim ) : bool

Can two faces be connected.

Connect ( FaceConnector a, FaceConnector b ) : void

Connect two faces.

FaceConnector ( int dimension ) : System.Collections.Generic

Ctor.

Update ( ConvexFaceInternal face, int edgeIndex, int dim ) : void

Updates the connector.

메소드 상세

AreConnectable() 공개 정적인 메소드

Can two faces be connected.
public static AreConnectable ( FaceConnector a, FaceConnector b, int dim ) : bool
a FaceConnector
b FaceConnector
dim int
리턴 bool

Connect() 공개 정적인 메소드

Connect two faces.
public static Connect ( FaceConnector a, FaceConnector b ) : void
a FaceConnector
b FaceConnector
리턴 void

FaceConnector() 공개 메소드

Ctor.
public FaceConnector ( int dimension ) : System.Collections.Generic
dimension int
리턴 System.Collections.Generic

Update() 공개 메소드

Updates the connector.
public Update ( ConvexFaceInternal face, int edgeIndex, int dim ) : void
face ConvexFaceInternal
edgeIndex int
dim int
리턴 void

프로퍼티 상세

EdgeIndex 공개적으로 프로퍼티

The edge to be connected.
public int EdgeIndex
리턴 int

Face 공개적으로 프로퍼티

The face.
public ConvexFaceInternal,MIConvexHull Face
리턴 ConvexFaceInternal

HashCode 공개적으로 프로퍼티

The hash code computed from indices.
public uint HashCode
리턴 uint

Next 공개적으로 프로퍼티

Next node in the list.
public FaceConnector,MIConvexHull Next
리턴 FaceConnector

Previous 공개적으로 프로퍼티

Prev node in the list.
public FaceConnector,MIConvexHull Previous
리턴 FaceConnector

Vertices 공개적으로 프로퍼티

The vertex indices.
public int[] Vertices
리턴 int[]