
16.05.2010, 13:46
|
|
Reservists Of Antichat - Level 6
Регистрация: 04.02.2007
Сообщений: 1,152
Провел на форуме: 3008839
Репутация:
1502
|
|
Код:
OnLButtonDown(x,y):
//if (x,y внутри эллипса){
moving = 1;
x0 = Ellipse.Left - x;
y0 = Ellipse.Top - y;
//}
OnMouseMove(x,y):
if (moving){
Ellipse.Left = x + x0;
Ellipse.Top = y + y0;
}
OnLButtonUp():
moving = 0;
__________________
Bedankt euch dafür bei euch selbst.
H_2(S^3/((z1, z2)~(exp(2pi*i/p)z1, exp(2pi*q*i/p)z2)))=Z/pZ
|
|
|