사조영웅전 08
시발
스토리가 완전 날아다니네..
각색 너무 심하다ㅋ
양철심과 포석약은 03 사조때가 가장 슬프고 아름다웠으나..
08은 이게 뭥미.. 감동도 없고..
너무 많이 잘라먹고 너무 많이 늘리고..
아무리 생각해도 임의신은 미스케스팅인듯..
주인과 주신이 최고였던것 같다.
임의신을 쓰느니 차라리 임심여를 쓰지..
같은 임씬데 ㅠㅜ
03 사조가 꽤나 수작이었긴 한것 같다.
어쨌든, 08 사조는 03 의천만큼이나 날 황당하게 만든다,


Couldn't be written any better. Reading this post reminds me of my old room mate! He always kept talking about this <a href="http://www.dressaler.com/shoes.html" title="wedding shoes">wedding shoes</a>. This way even more people can enjoy your posts <a href="http://www.dressaler.com/wedding-accessories.html" title="Cheap Wedding Accessories">Cheap Wedding Accessories</a> and nothing beats a big audiance ;).I’m very certain they will understand lots of new stuff here than anybody else. I do appreciate that youve added relevant and intelligent commentary here though.<a href="http://www.dressaler.com/special-sale-wedding-dress-in-stock.html" title="wedding dress on sale">wedding dress on sale</a> Thank you!
bool InsidePolyCheck(GPoint pt,GPoint* poly, int polycnt)
{
int i, j;
bool c = false;
GPoint Ixy;
GPoint Jxy;
for (i = 0, j = (polycnt - 1); i < polycnt; j = i++)
{
Ixy.x = poly[i].x;
Ixy.y = poly[i].y;
Jxy.x = poly[j].x;
Jxy.y = poly[j].y;
if ((((Ixy.y <= pt.y) && (pt.y < Jxy.y)) || ((Jxy.y <= pt.y) && ( pt.y < Ixy.y))) &&
(pt.x < (Jxy.x - Ixy.x) * (pt.y - Ixy.y) / (Jxy.y - Ixy.y) + Ixy.x))
c = !c;
}
return c;
}
Couldn't be written any better. Reading this post reminds me of my old room mate! He always kept talking about this <a href="http://www.dressaler.com/shoes.html" title="wedding shoes">wedding shoes</a>. This way even more people can enjoy your posts <a href="http://www.dressaler.com/wedding-accessories.html" title="Cheap Wedding Accessories">Cheap Wedding Accessories</a> and nothing beats a big audiance ;).I’m very certain they will understand lots of new stuff here than anybody else. I do appreciate that youve added relevant and intelligent commentary here though.<a href="http://www.dressaler.com/special-sale-wedding-dress-in-stock.html" title="wedding dress on sale">wedding dress on sale</a> Thank you!
double getAngle(GPoint centerPt, GPoint pt)
{
pt-=centerPt;
double angle = atan2(pt.x,pt.y) * 180 / 3.141592;
return angle > 0 ? angle : angle + 360;
}