摘要:
typedef union _Vector2f { struct { float x, y; }; struct { float u, v; }; float arr[2]; FORCEINLINE void init() { x = y = 0.0f; } FORCEINLINE void init( float _x, flo... 阅读全文
摘要:
typedef union _Vector2f { struct { float x, y; }; struct { float u, v; }; float arr[2]; FORCEINLINE void init() { x = y = 0.0f; } FORCEINLINE void init( float _x, flo... 阅读全文
|