Hi,
I am relatively new to EA, but I already found the shapes feature, which lets me create custom shapes to be used together with stereotypes.
I composed the following shape and was confused by the output (see comments):
shape main
{
setpencolor(0,0,255);
setpenwidth(2);
startpath();
moveto(15,0);
lineto(100,0); // line is NOT displayed!
bezierto(80,25,80,75,100,100);
lineto(15,100);
bezierto(0,75,0,25,15,0);
lineto(100,0); // this time, the line is displayed
endpath();
fillandstrokepath(); // not filled!}
return;
}
What must be done, that this shape is filled?
Or is bezierto not intended to work within paths?
I tried to use the arc method to produce this drawing, but wasn't successful either (because of way the lines are drawn).
tnx, ThommyG