#405 プログラミングカフェのコーナー(9)「svgフォーマットの内部構造(後編)」

2021/07/22 08:00 放送

番組詳細

http://9chat-e.mynt.work/?c=radio/contents&id=405 プログラミング学習に役立つ情報をお伝えするラジオ番組 # ellipse <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <ellipse cx="50" cy="50" rx="40" ry="30" fill="red" stroke="blue" stroke-width="4"></ellipse> </svg> # line <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"> <line x1="10" y1="10" x2="90" y2="90" stroke="red" stroke-width="8"></line> </svg> # poliline <svg viewBox="0 0 800 500" xmlns="http://www.w3.org/2000/svg"> <polyline points="50,375 150,375 150,325 250,325 250,375 350,375 350,250 450,250 450,375 550,375 550,175 650,175 650,375 750,375 " stroke="blue" stroke-width="8" fill="red"></polyline> </svg> # poligon <svg viewBox="0 0 300 300" xmlns="http://www.w3.org/2000/svg"> <polygon points="150,25 179,111 269,111 197,165 223,251 150,200 77,251 103,165 31,111 121,111" stroke="blue" stroke-width="4" fill="red"></polygon> </svg>