목록가두기 (1)
응애맘마조
이동 제한
사각형 내 오브젝트의 이동 범위를 한정하는 게 과제였습니다. Saturate를 사용했습니다. //main.cpp #include "stdafx.h" #include "Main.h" void Main::Init() { lim = new ObRect(); lim->scale = Vector2(300.0f, 300.0f); lim->color = Color(0.0f, 0.0f, 0.0f, 1.0f); lim->isFilled = false; cam = new ObRect(); cam->scale = Vector2(100.0f, 100.0f); cam->color=Color(0.0f, 0.0f, 0.0f, 1.0f); cam->isFilled = false; cc = new ObCircle(); cc->scal..
공부/2D과제
2023. 1. 17. 16:41