def rad(self, interior=True): name = self.name material = self.material points = self.points[:] if interior == True: points.reverse() return write_rad.surface(name, material, points)
def rad(self, interior = True): name = self.name material = self.material points = self.points[:] if interior == True: points.reverse() return write_rad.surface(name, material, points)
def to_str(self, interior = True): if interior == True: self.points.reverse() return write_rad.surface(self.name, self.material, self.points)
def rad(self): name = self.name material = self.material points = self.points[:] return write_rad.surface(name, material, points)