C# 클래스 Box2DX.Collision.PolygonDef

상속: ShapeDef
파일 보기 프로젝트 열기: danielpcox/Crisis-at-Swiss-Station 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
VertexCount int
Vertices Box2DX.Common.Vec2[]

공개 메소드들

메소드 설명
PolygonDef ( ) : System
SetAsBox ( float hx, float hy ) : void

Build vertices to represent an axis-aligned box.

SetAsBox ( float hx, float hy, Vec2 center, float angle ) : void

Build vertices to represent an oriented box.

메소드 상세

PolygonDef() 공개 메소드

public PolygonDef ( ) : System
리턴 System

SetAsBox() 공개 메소드

Build vertices to represent an axis-aligned box.
public SetAsBox ( float hx, float hy ) : void
hx float The half-width
hy float The half-height.
리턴 void

SetAsBox() 공개 메소드

Build vertices to represent an oriented box.
public SetAsBox ( float hx, float hy, Vec2 center, float angle ) : void
hx float The half-width
hy float The half-height.
center Box2DX.Common.Vec2 The center of the box in local coordinates.
angle float The rotation of the box in local coordinates.
리턴 void

프로퍼티 상세

VertexCount 공개적으로 프로퍼티

The number of polygon vertices.
public int VertexCount
리턴 int

Vertices 공개적으로 프로퍼티

The polygon vertices in local coordinates.
public Vec2[],Box2DX.Common Vertices
리턴 Box2DX.Common.Vec2[]