11_Terrain 만든 지형에다가 법선 벡터라는걸 찍어 볼려고 함 Terrain.cpp, h (수정) 더보기 DebugLine.cpp, h 더보기 #include "Framework.h" #include "DebugLine.h" DebugLine* DebugLine::instance = NULL; void DebugLine::Create() { assert(instance == NULL); //이미 만들어지면 터짐 instance = new DebugLine(); } void DebugLine::Delete() { SafeDelete(instance); } DebugLine * DebugLine::Get() { assert(instance != NULL); return instance; } void D..