@@ -109,7 +109,7 @@ def Exit():
109
109
'logx' :'u' , 'logy' :'v' , 'dot' :'w' , 'dot_radius' :'x' ,
110
110
'markers' :'y' , 'legend' :'z' , 'label' :'A' , 'delta' :'B' , 'marker_color' :'C' ,
111
111
'size_units' :'D' , 'userpan' :'E' , 'scroll' :'F' , 'choices' :'G' , 'depth' :'H' ,
112
- 'round' :'I' , 'name' :'J' , 'offset' :'K' , 'attach_idx' :'L' , 'ccw' :'M' }
112
+ 'round' :'I' , 'name' :'J' , 'offset' :'K' , 'attach_idx' :'L' , 'ccw' :'M' , 'dot_color' : 'N' }
113
113
114
114
# methods are X in {'m': '23X....'}
115
115
# pos is normally updated as an attribute, but for interval-based trails, it is updated (multiply) as a method
@@ -2118,6 +2118,7 @@ def setup(self, args):
2118
2118
self ._color = vector (0 ,0 ,0 )
2119
2119
self ._marker_color = vector (0 ,0 ,0 )
2120
2120
self ._dot = False
2121
+ self ._dot_color = vector (0 ,0 ,0 )
2121
2122
self ._delta = 1
2122
2123
self ._width = 2
2123
2124
self ._radius = 3
@@ -2362,6 +2363,13 @@ def dot_radius(self,val):
2362
2363
self ._dot_radius = val
2363
2364
self .addattr ('dot_radius' )
2364
2365
2366
+ @property
2367
+ def dot_color (self ): return self ._dot_color
2368
+ @dot_color .setter
2369
+ def dot_color (self ,val ):
2370
+ self ._dot_color = val
2371
+ self .addattr ('dot_color' )
2372
+
2365
2373
class gdots (gobj ):
2366
2374
def __init__ (self , ** args ):
2367
2375
args ['_objName' ] = "gdots"
0 commit comments