Measure devel notes: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 34: | Line 34: | ||
r, g, b = [int(n, 16) for n in (r, g, b)] |
r, g, b = [int(n, 16) for n in (r, g, b)] |
||
return (r, g, b) |
return (r, g, b) |
||
==Get the XO colors== |
|||
from sugar import profile |
|||
color=profile.get_color() |
|||
fill = color.get_fill_color() |
|||
stroke = color.get_stroke_color() |
Revision as of 09:16, 20 October 2007
Measure Development Notes
For note-taking and reference during the course of development of Measure Activity. For the official page please see Measure
Metadata file associated with Logs
Measure Activity logs metadata file Filename Filename Filename Logname Logname Logname
Log file format
sec/minute/hour/snapshot 2232 3445 stop
Draw dotted log
context.move_to(x,y) context.arc(x,y,r,0,2*pi)
Convert #RRGGBB to an (R, G, B) tuple
colorstring = colorstring.strip() if colorstring[0] == '#': colorstring = colorstring[1:] r, g, b = colorstring[:2], colorstring[2:4], colorstring[4:] r, g, b = [int(n, 16) for n in (r, g, b)] return (r, g, b)
Get the XO colors
from sugar import profile color=profile.get_color() fill = color.get_fill_color() stroke = color.get_stroke_color()