Processing.py-类定义上的未知错误

时间:2018-11-29 02:48:21

标签: python processing

我不知道如何解决此错误。

也许在这行之前的某个地方有一个括号或引号?

此代码有什么问题?

Class Ribbon: # I got an error on this line!
def __init__(self, xpos, ypos, m, g):
    self.x=xpos
    self.y=ypos
    self.mass=m
    self.gravity=g
    ..

def update(self, xpos, ypos):
    ..

def display(self, xpos, ypos):
    ..

1 个答案:

答案 0 :(得分:0)

这是您的问题:

Class Ribbon (object): 
      def __init__(self, xpos, ypos, m, g):
      self.x=xpos
      self.y=ypos
      self.mass=m
      self.gravity=g

还请记住,其他定义也必须正确缩进