Sunday, January 23, 2011

VPythonでウインドウの位置・サイズを設定する

VPythonでウインドウの位置・サイズを設定するには、以下のコードを実行します。

# coding=UTF-8
from visual import *
# ウインドウの位置・サイズを設定
scene.x = 50
scene.y = 50
scene.width = 150
scene.height = 150
# 球を作成
sphere1 = sphere(pos=(0, 0, 0), radius=1,
color=(0x99/255.,0xdd/255.,0xff/255.))


実行画面


動作環境
Python 3.1.3, VPython 5.41

No comments: