C# 크레이지 마우스(crazy mouse)
timer4_Tick():
Point cursorPoint = new Point(); Random random = new Random(); N += random.NextDouble() * 2; if (N > 16.28) N = 0; GetCursorPos(ref cursorPoint); SetCursorPos(Convert.ToInt32(cursorPoint.X + (20 * Math.Cos(N))), Convert.ToInt32(cursorPoint.Y + (20 * Math.Sin(N))));
P.S N은 Double형이며, 전역변수입니다.
'소스 관련' 카테고리의 다른 글
ShowWindow를 통한 윈도우 숨기기 (0) | 2013.04.01 |
---|---|
C# 화면 회전(Screen Rotate) (1) | 2013.03.24 |
C# 화면 흘러내림(Screen melt) (1) | 2013.03.24 |
2013-02-20 C# 마인크래프트 사이트 로그인 (3) | 2013.02.20 |
2013-02-20 FTP 파일 업로더 (0) | 2013.02.20 |