C# 클래스 UnityEngine.BoundingSphere

파일 보기 프로젝트 열기: CarlosHBC/UnityDecompiled 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
position Vector3
radius float

공개 메소드들

메소드 설명
BoundingSphere ( Vector3 pos, float rad ) : System

Initializes a BoundingSphere.

BoundingSphere ( Vector4 packedSphere ) : System

Initializes a BoundingSphere.

메소드 상세

BoundingSphere() 공개 메소드

Initializes a BoundingSphere.

public BoundingSphere ( Vector3 pos, float rad ) : System
pos Vector3 The center of the sphere.
rad float The radius of the sphere.
리턴 System

BoundingSphere() 공개 메소드

Initializes a BoundingSphere.

public BoundingSphere ( Vector4 packedSphere ) : System
packedSphere Vector4 A four-component vector containing the position (packed into the XYZ components) and radius (packed into the W component).
리턴 System

프로퍼티 상세

position 공개적으로 프로퍼티

The position of the center of the BoundingSphere.

public Vector3 position
리턴 Vector3

radius 공개적으로 프로퍼티

The radius of the BoundingSphere.

public float radius
리턴 float