Monday, January 04, 2010

GfxBuilderで星芒形を描画する

GfxBuilderで星芒形を描画するには、以下のコードを実行します。


import griffon.builder.gfx.render.*

def gr = new GfxRenderer()
gr.renderToFile("sample1429a.png", 200, 200){
antialias("on")
astroid( cx:100, cy:100, radius:50, angle:15,
fill: color("#c8c0c0"),
borderColor: color("#808080"),
borderWidth: 2
)
}


出力画像(sample1429a.png)
GfxBuilderで描画した星芒形

動作環境
Groovy1.6.5, JDK6 Update16

No comments: