hpi-swa-teaching / SVGMorph

(SWT22-04)
MIT License
5 stars 2 forks source link

no rounded edges rectangle #1

Closed MEPower closed 4 years ago

MEPower commented 4 years ago

When the following SVG specification demands rounded edges on the second rectangle(rx="10" ry="10"), they are not displayed:


<svg width="200" height="250" version="1.1" xmlns="http://www.w3.org/2000/svg">
 <rect x="10" y="10" width="30" height="30" stroke="black" fill="transparent" stroke-width="5"/>
  <rect x="60" y="10" rx="10" ry="10" width="30" height="30" stroke="black" fill="transparent" stroke-width="5"/>
</svg>