家紋シリーズ 井筒(2) 井筒に三つ巴
plotter を include
include("plotter.jl")
#=
井筒の中に描く三つ巴は以下に示した mitudomoe() 関数を呼ぶ
家紋シリーズ 三つ巴(左三つ巴,右三つ巴) - 算額あれこれ
=#
function izutunimitudomoe(; r=1, width=400, height=400)
plotbegin(w=width, h=height)
x = [1402, 1610, -138, -346]
y = -reverse(x)
plotpolygon( x, y, lwd=0, fcol=:black)
plotpolygon(-x, y, lwd=0, fcol=:black)
plotpolygon( x, -y, lwd=0, fcol=:black)
plotpolygon(-x, -y, lwd=0, fcol=:black)
mitudomoe(r=1.92, subunit=true)
plotend()
end
izutunimitudomoe()