소스 검색

Proper Float3 constructors.

legacy
Sam Hocevar sam 14 년 전
부모
커밋
6223c37bb2
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      src/matrix.h

+ 3
- 0
src/matrix.h 파일 보기

@@ -21,6 +21,9 @@ struct Float2

struct Float3
{
Float3() { x = y = z = 0.0f; }
Float3(float _x, float _y, float _z) { x = _x; y = _y; z = _z; }

float x, y, z;
};



불러오는 중...
취소
저장