コード例 #1
0
ファイル: colr.py プロジェクト: imclab/plotdevice-libs
    def draw(self, x, y, w=40, h=40):

        try: from web import _ctx
        except: pass

        from plotdevice.grobs import RGB
        for r,g,b in self:
            _ctx.colormode(RGB)
            _ctx.fill(r,g,b)
            _ctx.rect(x, y, w, h)
            x += w
コード例 #2
0
ファイル: colr.py プロジェクト: aoloe/shoebot
 def draw(self, x, y, w=40, h=40):
     
     try: from web import _ctx
     except: pass
     
     from nodebox.graphics import RGB
     for r,g,b in self:
         _ctx.colormode(RGB)
         _ctx.fill(r,g,b)
         _ctx.rect(x, y, w, h)
         x += w
コード例 #3
0
 def draw(self, x, y, w=40, h=40):
     
     try: from web import _ctx
     except: pass
     
     from nodebox.graphics import RGB
     for r,g,b in self:
         _ctx.colormode(RGB)
         _ctx.fill(r,g,b)
         _ctx.rect(x, y, w, h)
         x += w