摘要: 1 import math#引入math模块 计算角度用 2 class point(object):#定义空间点类 3 """docstring for point""" 4 def __init__(self,x,y,z,name): 5 self.x = x 6 self.y = y 7 se 阅读全文