[27 Feb 2008] FormStyles #EDGE and #SHADOW Ineffective When Not Using Fill
Posted: Sat Jun 13, 2020 5:31 pm
Note: This is an archived post that was originally sent to the Hollywood mailing list on Wed, 27 Feb 2008 01:10:01 -0000
This code does not produce a shadow:
But this code does:
(The FormStyle #EDGE also only works when a fill is used.)
Is this the way it is supposed to be, or is this a bug?
This code does not produce a shadow:
Code: Select all
SetFillStyle(#FILLNONE)
SetFormStyle(#ANTIALIAS)
SetFormStyle(#SHADOW, ARGB(128, $939393), 16, #SHDWSOUTHEAST)
Circle(#CENTER, #CENTER, 100, 100)
Code: Select all
SetFillStyle(#FILLCOLOR)
SetFormStyle(#ANTIALIAS)
SetFormStyle(#SHADOW, ARGB(128, $939393), 16, #SHDWSOUTHEAST)
Circle(#CENTER, #CENTER, 100, 100)
Is this the way it is supposed to be, or is this a bug?