... hab dem ding noch die spiegelung des textes abgewöhnt. dafür hab' ich ein skriptschnipsel aus
www.opengdl.org verwendet
herzlichen dank an frank :yeah: :winken:
</font><blockquote><font size="1" face="Verdana, Helvetica, sans-serif">Code:</font><hr /><pre style="font-size:x-small; font-family: monospace;"> !!! text mit kreis
!!! nov 2005 by zzyzx
! parameter anlegen:
! pentxt = 2 !(textstiftfarbe)
! r = 0.2 !(kreisradius)
! autohor = an !(text automatisch auf horizontalrichtung drehen)
! texteingabe über ID feld
hotspot2 0,0,1
hotspot2 a,b,2
circle2 0,0,r
if a = 0 then
line2 0,r,b,0
else
wnk = atn(b/a)
rot2 wnk
line2 r,0,sqr(a*a+b*b),0
del 1
endif
define style textstil arial, 0.3*1000/glob_scale, 5, 0
set style textstil
pen pentxt
txt = glob_id
if txt = "" then txt = "X"
!!! die nächsten zwei zeilen basieren auf:
!!!
http://www.opengdl.org/archiv-de/algori ... usrichtung mul2 1,1-2*symb_mirrored
rot2 180*symb_mirrored - symb_rotangle*autohor
text2 0,0, txt
del 2