연습 문제 1 연습 문제 2 연습 문제 3 연습 문제에서 주어진 건 Vertex 개수가 몇개인지, Type이 어떻게 되는지 Index가 몇개인지 알려주고, {} 안에 공백으로 포멧에 맞게 예쁘게 구분되어 들어었었다. 머... 파일 입출력을 잘 못하기도 하고, 귀찮기도 해서... 오로지 이 예제 텍스트 파일을 위한 읽기 함수를 만들었다. namespace Prac3 { void Prac3VerticesNIndicies(const wstring& _Path, vector& _outVertices, vector& _outIndices) { ifstream fin; fin.open(_Path); string TrashBin; UINT VertexCount; UINT IndicesCount; float px, p..