Viewport.cpp, h 더보기 #pragma once class Viewport { public: Viewport(float width, float height, float x = 0, float y = 0, float minDepth = 0, float maxDepth = 1); ~Viewport(); void RSSetViewport(); void Set(float width, float height, float x = 0, float y = 0, float minDepth = 0, float maxDepth = 1); float GetWidth() { return width; } float GetHeight() { return height; } Vector3 Project(const Vecto..