AttributeError:尝试以渐近方式递增圆的X值时,无法设置属性

2022-04-06 00:00:00 python sympy

问题描述

我在创建一个简单的函数时遇到了很多问题,该函数以渐近递增圆中心的X值。以下是我的代码:

test_center=Point (1,2)
test_circle = Circle (test_center, 1)

def travel (circle, distance):

    circle.center.x += distance
    return circle.center.x

travel (test_circle,1)
print(test_circle)

我得到的是:

第16行,出差

Circle.center.x+=距离属性错误:无法设置属性

如有任何帮助,我们将不胜感激!


解决方案

无法赋值变量circle.center.x,如果要移动圆,请使用翻译函数:

from sympy import Point, Circle

test_center=Point (1,2)
test_circle = Circle (test_center, 1)

def travel (circle, distance):
    return circle.translate(x=distance)


test_circle = travel(test_circle,1)
print(test_circle)

相关文章