C# 클래스 SFML.Graphics.Glsl.Vec3

파일 보기 프로젝트 열기: SFML/SFML.Net 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
X float
Y float
Z float

공개 메소드들

메소드 설명
Vec3 ( Vector3f vec ) : System.Runtime.InteropServices

Construct the Vec3 from a standard SFML Vector3f

Vec3 ( float x, float y, float z ) : System.Runtime.InteropServices

Construct the Vec3 from its coordinates

메소드 상세

Vec3() 공개 메소드

Construct the Vec3 from a standard SFML Vector3f
public Vec3 ( Vector3f vec ) : System.Runtime.InteropServices
vec Vector3f A standard SFML 3D vector
리턴 System.Runtime.InteropServices

Vec3() 공개 메소드

Construct the Vec3 from its coordinates
public Vec3 ( float x, float y, float z ) : System.Runtime.InteropServices
x float X coordinate
y float Y coordinate
z float Z coordinate
리턴 System.Runtime.InteropServices

프로퍼티 상세

X 공개적으로 프로퍼티

Horizontal component of the vector
public float X
리턴 float

Y 공개적으로 프로퍼티

Vertical component of the vector
public float Y
리턴 float

Z 공개적으로 프로퍼티

Depth component of the vector
public float Z
리턴 float