3

まず、Pythonの経験があまりありません。私がやろうとしているのは、このスライダーを取得して、temp実際に使用できる変数を取得することだけです。それは気の毒なことなので、データ型の不一致があることを教えてくれるか、単にスライダーがどこにあるかを報告しません。これがコードです(そして、はい、私の立方体が球体であることを知っています)

import pygame
import time
from visual.controls import *
from math import *

def setdir(direction): 
    cube.dir = direction

def red(value):
    red = temp * 0.04

def blue(value):
    blue = red - 2

def green(value):
    green = red - 2

def spherecolor(value): 
    cube.color = (red, 0, 0)
    if cube.color == color.red:
        t1.value = 0 
    else:
        t1.value = 1

def setrate(obj): 
    cuberate(obj.value) 

def cuberate(value):
    cube.dtheta = 2*value*pi/1e3
temp=1
a = 0
b = 0
c = 0
x = sin(a)
y = sin(b)
z = sin(c)
w = 350

display(x=w, y=0, width=w, height=w, range=1.5, forward=-vector(0,0,1), newzoom=1)

c = controls(x=0, y=0, width=w, height=w, range=60)

s2 = slider(pos=(-50,20), width=7, length=100, axis=(1,0,0), text='Temperature', max=100., value=temp)
s1 = slider(pos=(-50,40), width=7, length=100, axis=(1,0,0), text='Angular Velocity', action=lambda: setrate(s1))

cube = sphere(color=(temp/25, (temp/25)-2, (temp/25)-2), material=materials.rough, pos=(x,y,z))
sphere.velocity = vector(x,y,z)

setrate(s1) 
setdir(-1) 

side = .4
thk = 0.3
s2 = 2*side - thk
s3 = 2*side + thk

cube.p = vector (0.5,-0.3,0.0)
t=0
dt=0.1
while True:
    rate(100)
    cube.rotate(axis=(0,1,0), angle=cube.dir*cube.dtheta)
    t = t + dt
    cube.pos = cube.p*sin(t)/10
    if not (side > cube.x > -side):
        cube.p.x = -cube.p.x
    if not (side > cube.y > -side):
        cube.p.y = -cube.p.y
    if not (side > cube.z > -side):
        cube.p.z = -cube.p.z
4

1 に答える 1

0

s2を作成した後、s2を再割り当てします。

  s2 = 2 * side-thk

このs2を別のものに変更します。

于 2012-12-16T21:48:06.860 に答える