1
General Board / Re: Symbol for composite element in stereotypes
« on: February 08, 2008, 04:12:03 am »
Hallo
I tried out some things with shapes. If one writes two shapes one behind the other, then you can see only one. With one testscript I found out that the shape standing above is the one that is shown.
How can I show both??
I tried out some things with shapes. If one writes two shapes one behind the other, then you can see only one. With one testscript I found out that the shape standing above is the one that is shown.
Code: [Select]
decoration eins
{
startpath();
rectangle(5, 5, 95, 95);
endpath();
fillandstrokepath();
}
decoration zwei
{
startpath();
rectangle(30, 30, 70, 70);
endpath();
fillandstrokepath();
}
How can I show both??