Skip to content
Avatar

Sponsoring

@processing

Organizations

@garoa @arteprog
Block or Report

Block or report villares

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Add an optional note:
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
villares/README.md

This animation is made with points in a Python collections.deque data structure, added by dragging the mouse (code shown bellow)

  • 🔭 I'm currently working on a PhD at Unicamp
  • 🌱 I should be talking less and concentrating
  • 👯 I’m looking to collaborate on open resources to teach programming in a visual context
  • 💬 Ask me about drawing with Python!
    • Check out py5, it brings in the Processing drawing infrastructure!
  • 📫 How to reach me: twitter.com/villares
    • If you find the things I share here usefull, consider supporting my work at gumroad.com/villares
    • Pode me mandar um PIX: 46c37783-5edb-4f1c-b3a8-1309db11488c
  • 😄 Pronouns: he/him
  • Fun fact: I actually use this repo to store some helper code I use in my drawings.
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()

Pinned

  1. Resources for teaching programming for artists, designers and architects

    CSS 68 5

  2. Material do curso introdutório Programação Criativa de Monica Rizzolli e Alexandre Villares, em construção.

    49 15

  3. Studies in digital fabrication

    Python 9

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

    JavaScript 82 68

  5. One visual idea a day

    JavaScript 160 16

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

    Python 11

2,202 contributions in the last year

Oct Nov Dec Jan Feb Mar Apr May Jun Jul Aug Sep Oct Mon Wed Fri

Contribution activity

October 2022

Created a pull request in py5coding/py5examples that received 1 comment

Opened 1 issue in 1 repository
Started 2 discussions in 1 repository
py5coding/py5generator
52 contributions in private repositories Oct 1 – Oct 10

Seeing something unexpected? Take a look at the GitHub profile guide.