Pythonista3を使用してIPad用アプリ(自分専用)を作ろうとしています。
矩形の幅と高さをスライダーで変更できるようにしたいと考え作り始めました。
高さを変更するスライダーをtransformで垂直方向にしたのですが、位置合わせがうまく行きません。
とりあえず画面の左上に水平方向と垂直方向のスライダーを配置したいのですが、どのような方法がありますでしょうか。
ご教授いただければ幸いです。
Python
1import ui 2from scene import * 3 4rect_width = 0.1 5rect_height = 0.1 6 7def on_slider1(sender): 8 global rect_width 9 rect_width = round(sender.value,2)*500 10 11def on_slider2(sender): 12 global rect_height 13 rect_height = round(sender.value,2)*500 14 15class MyScene(Scene): 16 def setup(self): 17 pass 18 19 def draw(self): 20 global rect_width,rect_height 21 rect(10,10,rect_width,rect_height) 22 23v = ui.load_view() 24 25scene_view = SceneView(frame=v.bounds,flex='WH') 26scene_view.scene = MyScene() 27v['view1'].add_subview(scene_view) 28v['slider2'].transform = ui.Transform.rotation(math.radians(90)) 29 30v.present('fullscreen') 31
あなたの回答
tips
プレビュー