DirectX2 DirectX-(1) Text 띄위기. DirectX-> 여러 클래스들을 모아둔 집합소. 상대경로. .->현재 폴더 ..->현재 폴더의 윗폴더. 프레임 : 1/60 보통 Text.h 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #pragma once class Text { public: Text(); Text(float x, float y, BYTE r, BYTE g, BYTE b, string content); public: void Render(); private: D3DXVECTOR2 Location; D3DXCOLOR Color; string Content; }; Colored by Color Scripter cs Text.CPP 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 .. 2021. 11. 25. VertexLine NDC -> 정규 좌표계(NDCS : Normalized Device Coordinate System, 정규화 장치 좌표계) 헤더 ==================================================================== 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 #pragma once #include "Systems/IExecute.h" class Vertex_Line : public IExecute { public: virtual void Initialize() override; // 초기화 virtual void Ready() o.. 2021. 9. 1. 이전 1 다음