def __init__(self, vertices=5, radius=50.0, trafo=None, loading=0, duplicate=None): TrafoPlugin.__init__(self, trafo=trafo, duplicate=duplicate) if duplicate is not None: self.vertices = duplicate.vertices self.radius = duplicate.radius else: self.vertices = vertices self.radius = radius if not loading: self.recompute()
def __init__(self, text = '0', size = 12.0, trafo = None, loading = 0, duplicate = None): TrafoPlugin.__init__(self, trafo = trafo, duplicate = duplicate) if duplicate is not None: self.text = duplicate.text self.size = duplicate.size else: self.text = text self.size = size if not loading: self.recompute()
def __init__(self, vertices = 5, radius = 50.0, trafo = None, loading = 0, duplicate = None): TrafoPlugin.__init__(self, trafo = trafo, duplicate = duplicate) if duplicate is not None: self.vertices = duplicate.vertices self.radius = duplicate.radius else: self.vertices = vertices self.radius = radius if not loading: self.recompute()
def __init__(self, data = None, trafo = None, version = None, \ duplicate = None, loading = 0): TrafoPlugin.__init__(self, trafo=trafo, duplicate=duplicate) self.editor = None if duplicate: data = duplicate.GetData() self.SetData(data) self.name = duplicate.name if loading: self.SetData(data, version) else: self.recompute()
def __init__(self, text = '', styling = [], trafo = None, loading = 0, duplicate = None): self.objects = [] TrafoPlugin.__init__(self, trafo = trafo, duplicate = duplicate) if duplicate is not None: self.text = duplicate.text self.styling = duplicate.styling[:] else: self.text = text if loading: # XXX a bit ugly raw = styling styling = raw2styling(raw) self.styling = styling if not loading: self.recompute()
def __init__(self, text='', styling=[], trafo=None, loading=0, duplicate=None): self.objects = [] TrafoPlugin.__init__(self, trafo=trafo, duplicate=duplicate) if duplicate is not None: self.text = duplicate.text self.styling = duplicate.styling[:] else: self.text = text if loading: # XXX a bit ugly raw = styling styling = raw2styling(raw) self.styling = styling if not loading: self.recompute()