[Angel] 원 그리기
카테고리 없음2014. 10. 16. 16:53
http://docs.angel2d.com/index.html
위 documents에도 나와있듯이 굉장히 간단하다. main.cpp를 열고 //YOUR GAME SETUP CODE HERE 아래에 추가한다.
Actor *a = new Actor();
a->SetPosition(-3.f, 4.f);
a->SetColor(1.f, 0.f, 0.f);
a->SetDrawShape(ADS_Circle);
a->SetSize(3.f);
theWorld.Add(a);
그럼 아래와 같이 그려진다.
이외에도 square가 있다.