First: very cool! Grafics like round Boxes and Circles look now perfect thanks to "ForcePathUse(True)"! Very appreciate this incredible useful feature! Thanks you, Andreas!
I observed a little Bug with (at least) boxes though, when "ForcePathUse(True)" is used.
The x- and y-coordinate are are miscalculated on the display by one pixel.
e.g. in my code the following box:
Box(#LEFTOUT,100,200,100,#DDDDDD,RoundLevel=57,hidden=False,name="testbox",insertPos=1}
is still visible by one line on the display.
Another example with clip regions:
Locale cid=CreateClipRegion(nil,#BOX,x,y,w,h)
When drawing then a box like:
Box(x,y,w,h,#BLACK,{hidden=false,name="textbox"})
it is displayed one pixle too far to the left and one pixle above the clip reagon. So, I need to adjust the Box in this way:
Box(x+1,y+1,w-1,h-1,#BLACK,{hidden=false,name="testbox"})
to place the Box within the clip region. (I'm not sure anymore if w-1 and h-1 is necessary).
Without ForcePathUse(True) the placement is of a box is correct.
cheers, nexus