Function til koordinater...
Er der nogen, som kan lave en funktion der et givet koordinat er inden for arealet af en cirkel.Følgende parametre skal bruges:
Radius: Radius på cirkel der skal kontrolleres
CirkelX: X-koordinat til centrum for cirkel.
CirkelY: Y-koordinat til centrum for cirkel.
X: X-koordinat til centrum for kontrolpunkt.
Y: Y-koordinat til centrum for kontorlpunkt.
F.eks.
Function ErIndenFor(intRadius, intCirkelX, intCirkelY, X, Y)
HVIS Punktet(x,y) er inden for cirkel med start i Punktet(CirkelX, CirkelY) med radius(intRadius) SÅ
ErIndenFor = True
ELLERS
ErIndenFor = False
End Function