if worker_name == CONSTANT.PI_JYZ_JQ_NAME or \ worker_name == CONSTANT.PI_JYZ_XY_NAME or\ worker_name == CONSTANT.PI_JYZ_XYA_NAME: points_A = [] for pointAll in point_data[:-2]: points = [] for point in pointAll[:-1]: x = round(point[0] * self.width) y = round(point[1] * self.height) points.append([x, y]) points_A.append(points) #print("points_A11:", points_A) for pointAll in point_data[1:]: if pointAll is not None: points1 = [] for point in pointAll: x = round(point[0] * self.width) y = round(point[1] * self.height) points1.append([x, y]) points_A.append(points1) #print("points1:", points1) worker.set_points(points_A) #print("1221222:", points_A)
时间: 2024-02-10 08:18:26 浏览: 48
cnm.zip_CNM_matlab CNM_workera98_www.2014cnm_zip
这段代码看起来像是 Python 语言中的一个函数或方法,其中使用了一个名为 `worker_name` 的变量。根据变量名字来看,可能是用于指定某个工作人员的名称。在代码的后面,使用了一个名为 `points_A` 的列表,其中存储了一些二维坐标点的数据。这些数据似乎被用于设置 `worker` 对象的一些属性。具体来说,`worker.set_points(points_A)` 可能会用于将这些坐标点数据设置到 `worker` 对象的 `points` 属性中。
阅读全文