C# 클래스 Axiom.Math.PlaneBoundedVolume

Represents a convex volume bounded by planes.
파일 보기 프로젝트 열기: WolfgangSt/axiom 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
outside PlaneSide
planes PlaneList

공개 메소드들

메소드 설명
Intersects ( AxisAlignedBox box ) : bool

Intersection test with an AxisAlignedBox.

May return false positives but will never miss an intersection.

Intersects ( Sphere sphere ) : bool

Intersection test with Sphere.

PlaneBoundedVolume ( ) : System

Default constructor.

PlaneBoundedVolume ( PlaneSide outside ) : System

Constructor.

메소드 상세

Intersects() 공개 메소드

Intersection test with an AxisAlignedBox.
May return false positives but will never miss an intersection.
public Intersects ( AxisAlignedBox box ) : bool
box AxisAlignedBox Box to test.
리턴 bool

Intersects() 공개 메소드

Intersection test with Sphere.
public Intersects ( Sphere sphere ) : bool
sphere Sphere Sphere to test.
리턴 bool

PlaneBoundedVolume() 공개 메소드

Default constructor.
public PlaneBoundedVolume ( ) : System
리턴 System

PlaneBoundedVolume() 공개 메소드

Constructor.
public PlaneBoundedVolume ( PlaneSide outside ) : System
outside PlaneSide Side of the plane to be considered 'outside'.
리턴 System

프로퍼티 상세

outside 공개적으로 프로퍼티

Side of the plane to be considered 'outside'.
public PlaneSide outside
리턴 PlaneSide

planes 공개적으로 프로퍼티

Publicly accessible plane list, you can modify this direct.
public PlaneList planes
리턴 PlaneList