楕円

ファイル名 : ellipse.pxdx

<?xml version="1.0" encoding="utf-8"?>
<!-- 用紙サイズ「A4」用紙方向「縦」 -->
<pxd paper-type="a4" orientation="portrait" title="図形">
   <page>
      <!-- 値10の時1mmになるように設定 -->
      <svg x="0" y="0" width="29.7cm" height="21cm" viewBox="0 0 2970 2100">
         <!-- 太さ1mm、円中心位置横5cm、縦7cm、半径横2cm、縦3cmの黒色の楕円を描く(塗りつぶし無し) -->
         <ellipse cx="500" cy="700" rx="200" ry="300" stroke="black" stroke-width="10" fill="none"/>
         <!-- 太さ1mm、円中心位置横10cm、縦7cm、半径横2cm、縦1cmの緑色の円を描く(赤色で塗りつぶし)-->
         <ellipse cx="1000" cy="700" rx="200" ry="100" stroke="green" stroke-width="10" fill="red"/>
      </svg>
   </page>
</pxd>