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

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

공개 프로퍼티들

프로퍼티 타입 설명
X int
Y int

공개 메소드들

메소드 설명
Ivec2 ( Vector2i vec ) : System.Runtime.InteropServices

Construct the Ivec2 from a standard SFML Vector2i

Ivec2 ( int x, int y ) : System.Runtime.InteropServices

Construct the Ivec2 from its coordinates

메소드 상세

Ivec2() 공개 메소드

Construct the Ivec2 from a standard SFML Vector2i
public Ivec2 ( Vector2i vec ) : System.Runtime.InteropServices
vec Vector2i A standard SFML 2D integer vector
리턴 System.Runtime.InteropServices

Ivec2() 공개 메소드

Construct the Ivec2 from its coordinates
public Ivec2 ( int x, int y ) : System.Runtime.InteropServices
x int X coordinate
y int Y coordinate
리턴 System.Runtime.InteropServices

프로퍼티 상세

X 공개적으로 프로퍼티

Horizontal component of the vector
public int X
리턴 int

Y 공개적으로 프로퍼티

Vertical component of the vector
public int Y
리턴 int