C# 클래스 LibNoise.Model.Line.Position

Internal struct that represent a 3D position
파일 보기 프로젝트 열기: everbytes/LibNoise

공개 프로퍼티들

프로퍼티 타입 설명
x float
y float
z float

공개 메소드들

메소드 설명
Position ( float x, float y, float z )

Initializes a new instance of the Position struct.

메소드 상세

Position() 공개 메소드

Initializes a new instance of the Position struct.
public Position ( float x, float y, float z )
x float The x.
y float The y.
z float The z.

프로퍼티 상세

x 공개적으로 프로퍼티

x coordinate of a position.
public float x
리턴 float

y 공개적으로 프로퍼티

y coordinate of a position.
public float y
리턴 float

z 공개적으로 프로퍼티

z coordinate of a position.
public float z
리턴 float