Hello. I have the following code to draw two lines that connect to each other at one point:
<s:Line right="0" top="0" bottom="0">
<s:stroke>
<s:RadialGradientStroke weight="3">
<s:GradientEntry ratio="0" color="0xAB9A9C" alpha="0.5" />
<s:GradientEntry ratio="0.8" color="0x8A797B" />
<s:GradientEntry ratio="0.9" color="0x524244" />
</s:RadialGradientStroke>
</s:stroke>
</s:Line>
<s:Line right="0" left="0" bottom="0">
<s:stroke>
<s:RadialGradientStroke weight="3">
<s:GradientEntry ratio="0" color="0xAB9A9C" alpha="0.5" />
<s:GradientEntry ratio="0.8" color="0x8A797B" />
<s:GradientEntry ratio="0.9" color="0x524244" />
</s:RadialGradientStroke>
</s:stroke>
</s:Line>
how can i create a small curve in the connection between the two lines?
thanks!