Os exemplos mais abaixo neste Gist são a inspiração para 3 videozinhos sobre Azulejos de Truchet com py5 (usando py5 imported mode no Thonny)
- 1 https://peertube.lhc.net.br/w/umbmBicMFuUVKDD6gpnWpM
- 2 https://peertube.lhc.net.br/w/9wiWAvqigruASr3Kj4F7id
- 3 https://peertube.lhc.net.br/w/in7VefyJJAwcEcKfwDerts
Se você gostar, considere apoiar a instância do PeerTube do LHC que hospeda os vídeos https://peertube.lhc.net.br e me apoiar (que fiz esse material) https://liberapay.com/villares
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import taichi as ti | |
import taichi.math as tm | |
import py5 | |
#ti.init(arch=ti.gpu) | |
ti.init() | |
@ti.func | |
def complex_sqr(z): # complex square of a 2D vector | |
return tm.vec2(z[0] * z[0] - z[1] * z[1], 2 * z[0] * z[1]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
You'll need py5 and a use the run_sketch tool or Thonny + thonny-py5mode | |
to run this py5 "imported mode" style sketch. Learn more at py5coding.org | |
I will run on full screen. Click on screen and press ESC to exit. | |
Adjust speed by changing the time_per_image variable in milliseconds. | |
""" | |
time_per_image = 3000 # milliseconds | |
fade_time = 500 # actually fade in + fade out will be double this |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
You'll need py5 and a use the run_sketch tool or Thonny + thonny-py5mode | |
to run this py5 "imported mode" style sketch. Learn more at py5coding.org | |
Add images or SVGs to a folder named 'data' next to your animated image show script. | |
It will run on full screen. Click on screen and press ESC to exit. | |
Adjust speed by changing the time_per_image variable in milliseconds. | |
Beware py5 might be unable to load some SVGs... an error message will be printed. | |
This version will not try to scale images to fit the screen. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
a
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
An example/template for generating a mutiple page PDF using py5. | |
Imported mode style - You'll need to use the thonny-py5mode plug-in or the sketch_runner tool | |
CC0 / Public Domain dedication - by Alexandre B A Villares | |
""" | |
NUM_PAGES = 10 | |
s = 0.71 # scale factor 1 => 356 x 275 trying 252 x 195 | |
rs = 1 # starting random seed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import py5 | |
fator_escala = 3.78 * 50 / 189 | |
NOME = "caixa_flex-v1" # Precisa ser cortado 2x! só desenha "meia caixa" | |
W, H, P = 200, 120, 50 # dimensões | |
R = 30 # raio | |
XO, YO = 50, 50 # offset do desenho na página | |
def setup(): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# You *need* to install py5! | |
# Instructions at https://py5.ixora.io/ | |
from collections import Counter | |
from random import randint | |
import py5 | |
cell_size = 4 | |
current_board = set() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ----------------------------------------------------------------------------- | |
# From Pytnon to Numpy | |
# Copyright (2017) Nicolas P. Rougier - BSD license | |
# More information at https://github.com/rougier/numpy-book | |
# ----------------------------------------------------------------------------- | |
import numpy as np | |
import matplotlib.pyplot as plt | |
from matplotlib.path import Path | |
from matplotlib.animation import FuncAnimation | |
from matplotlib.collections import PathCollection |
NewerOlder