Turtleグラフィックスの例
多角形を描く
パラメータの値は適当に変更してください。
Sub DrawPolygon() Dim i, j Dim c Const side = 0.2 Const x0 = 0.4 Const y0 = 0.1 InitializeGraphics SetViewPort 10, 10, 489, 489 SetGraphicsWindow 0, 1, 1, 0 c = QBColor(0) For i = 3 To 9 TGSetPoint x0, y0 TGSetAngle 0 For j = 1 To i TGMoveL side, c TGTurn 360 / i Next j Next i End Sub