View Single Post
Fantastic - Thanks!

I succeeded in making my open arrow with a plus sign in it, thusly:

{
Gap = 0.5;
LineGap = 1.4;
Name = PlusArrow;
Path = {
elements = (
{element = MOVETO; point = "{0, 0}"; },
{element = LINETO; point = "{8, 4}"; },
{element = LINETO; point = "{8, -4}"; },
{element = CLOSE; },
{element = MOVETO; point = "{3, 0}"; },
{element = LINETO; point = "{7, 0}"; },
{element = MOVETO; point = "{5, -2}"; },
{element = LINETO; point = "{5, 2}"; },
);
};
Width = 8;
},

But the plus sign is a little anemic looking (i.e. line is a little thin). So I tried an outline of the plus sign:

{
Gap = 0.5;
LineGap = 1.4;
Name = PlusArrowThick;
Path = {
elements = (
{element = MOVETO; point = "{0, 0}"; },
{element = LINETO; point = "{8, 4}"; },
{element = LINETO; point = "{8, -4}"; },
{element = CLOSE; },
{element = MOVETO; point = "{3, -.5}"; },
{element = LINETO; point = "{3, .5}"; },
{element = LINETO; point = "{4.5, .5}"; },
{element = LINETO; point = "{4.5, 2}"; },
{element = LINETO; point = "{5.5, 2}"; },
{element = LINETO; point = "{5.5, .5}"; },
{element = LINETO; point = "{7, .5}"; },
{element = LINETO; point = "{7, -.5}"; },
{element = LINETO; point = "{5.5, -.5}"; },
{element = LINETO; point = "{5.5, -2}"; },
{element = LINETO; point = "{4.5, -2}"; },
{element = LINETO; point = "{4.5, -.5}"; },
{element = CLOSE; }
);
};
Width = 8;
},

Now - is there any way to combine a filled shape with a non-filled shape? I'd like to fill in the plus sign.