Book a Demo

Author Topic: EA Shape Script Rendering Issues  (Read 3653 times)

Daiim

  • EA User
  • **
  • Posts: 51
  • Karma: +0/-0
    • View Profile
EA Shape Script Rendering Issues
« on: February 05, 2018, 08:29:08 pm »
Obviously EA has changed something in their rendering order of shape scripts. The following script for an connector:

shape main
{
   moveto(0,0);
   lineto(100,0);

   setfixedregion(40,-10,60,10);
   rectangle(40,-10,60,10);
}


shape target
{
   rotatable = true;
   
   startpath();
      moveto(0,0);
      lineto(16,6);
      lineto(16,-6);
   endpath();
   
   fillandstrokepath();
}

results now in overlap of main shape onto target shape. This must have changed from 13.0 to 13.5 but now kills all my uml extensions!

(why is there no possibility to add an attachment, or insert images ?!?)

Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: EA Shape Script Rendering Issues
« Reply #1 on: February 06, 2018, 12:05:47 am »
Hi Daiim,

Just to be sure, you do know that posting a bug here is only to inform the other users on the forum right?
To file an official bug report to you need to use the link at the bottom of the page

You cannot upload images directly on this forum, but you can use a public image hosting site such as https://imgur.com/ and then link to that image using the image tag.

Geert