Пример #1
0
 def getProperties(self, *args, **kwargs):
     # __getattribute__ wouldn't suit, as RL is directly accessing self.__dict__
     props = Path.getProperties(self, *args, **kwargs)
     if 'strokeWidth' in props:
         props['strokeWidth'] = 0
     if 'strokeColor' in props:
         props['strokeColor'] = None
     return props
Пример #2
0
 def getProperties(self, *args, **kwargs):
     # __getattribute__ wouldn't suit, as RL is directly accessing self.__dict__
     props = Path.getProperties(self, *args, **kwargs)
     if 'strokeWidth' in props:
         props['strokeWidth'] = 0
     if 'strokeColor' in props:
         props['strokeColor'] = None
     return props
Пример #3
0
 def getProperties(self, *args, **kwargs):
     props = Path.getProperties(self, *args, **kwargs)
     if 'fillColor' in props:
         props['fillColor'] = None
     return props
Пример #4
0
 def getProperties(self, *args, **kwargs):
     props = Path.getProperties(self, *args, **kwargs)
     if 'fillColor' in props:
         props['fillColor'] = None
     return props