angol
Profilkép

Alexandre B A Villares
@villares

Making free and open-source educational resources

villares 1 támogatóval rendelkezik.
Adományozás   PayPal

Leírás

Hi!

I work as a technology and arts educator, and I develop free and open didactic materials, I also collaborate with free software projects. My main research interests are computational art procedures, generative design, creative coding and how to teach programming in visual contexts.

If you support me with your donations I can make more materials and collaborate more. If LiberaPay doesn't work well in your country or currency, try this PayPal donation link

from collections import deque  # a double-ended queue
import py5  # check out https://github.com/py5coding 

history = deque(maxlen=512)  # mouse dragged positions

def setup():   # py5 will call this once to set things up
    py5.size(600, 400)
    py5.no_stroke()
    py5.color_mode(py5.HSB)

def draw():   # py5 will call this in a loop
    py5.background(51)
    for i, (x, y) in enumerate(history):
        py5.fill(i / 2, 255, 255, 128)
        py5.circle(x, y, 8 + i / 16)
    if history:
        history.append(history.popleft())

def mouse_dragged():  # py5 will call this when you drag the mouse
    history.append((py5.mouse_x, py5.mouse_y))

def key_pressed():   # py5 will call this when a key is pressed
    history.clear()

py5.run_sketch()

Összekapcsolt fiókok

villares a következő fiókokkal rendelkezik más platformokon:

Tárolók

sketch-a-day Csillagok 210 Frissítve ezen a héten

One visual idea a day

material-aulas Csillagok 97 Frissítve 1 héttel ezelőtt

Material para ensino introdutório de programação com Python em um contexto visual

python-visual-context Csillagok 0 Frissítve 1 hónappal ezelőtt

Learn Python by drawing things

Resources-for-teaching-programming Csillagok 95 Frissítve 3 hónappal ezelőtt

Resources for teaching programming for artists, designers and architects

Paper-objects-with-Processing-and-Python Csillagok 12 Frissítve 5 hónappal ezelőtt

Studies in digital fabrication

lousa-magica Csillagok 7 Frissítve 6 hónappal ezelőtt

Lousa mágica e Lousa paramétrica são máquinas de desenhar com potenciômetros! (Processing + Arduino)

desenho-sem-argumentos Csillagok 2 Frissítve 7 hónappal ezelőtt

material para o zine desenho()

arc_tangents_and_bezier_studies Csillagok 12 Frissítve 7 hónappal ezelőtt

Code snipets for working with arc tangents and bezier aproximations, mostly on Processing

mestrado Csillagok 3 Frissítve 1 évvel ezelőtt

Documentação do mestrado ATC FEC/Unicamp 2017-2019

pyp5js-gameboards Csillagok 1 Frissítve 2 évvel ezelőtt

Examples for using pyp5js to make simple games

pymunk-pinball-paulista Csillagok 2 Frissítve 2 évvel ezelőtt

faded-parsons-visual (származtatás) Csillagok 1 Frissítve 3 héttel ezelőtt

Python Parsons Problems with Visual Results. Quebra-cabeças de Parsons em Python com resultado visual

Támogatók   Exportálás CSV formátumban

villares 1 nyilvános mecénással rendelkezik.

Előzmények

villares 5 hónappal ezelőtt csatlakozott.

villares nem hozza nyilvánosságra, hogy mennyit keres a Liberapay-en keresztül.