Top Tweets for #artcoding
Spots and Orbits #creativecoding #stemeducation
#codeart #artcoding #dailycoding #generativeart
TO spotsandorbits
reset : hideturtle : penup
setbackgroundcolor mediumblue
setbackgroundshade 10
;shade range -15 (white) to 15 (black)
setpenstyle "mark
setpenwidth 2
wrap ;wrap around edges
repeat 200 [
;do the below 200 times:
randomposition
dropanchor ;set anchor point here
;turtle orbits around anchor point
pullout random [100]
;pullout from anchor point
;random number from [1 - 100]
setpencolor pick [1 2 7 8 9 10 15]
setpenshade -4 + random 10
pendown
repeat random [300] [
;do from [1 to 300] times:
(setpenwidth
(clamp ;restrict result
penwidth + (random [-1 1]) / 8
;random number from -1 to 1
0 ;clamp minimum
3 ;clamp maximum
)
) ;end setpenwidth
orbitleft 1
;orbit to the left 1 degree
]
penup : randomposition
setfillcolor pencolor
setfillshade penshade
spot random [4] ;[1 to 4]
] ;do the above 199 more times
END
![TurtleSpaces's tweet photo. Spots and Orbits #creativecoding #stemeducation
#codeart #artcoding #dailycoding #generativeart
TO spotsandorbits
reset : hideturtle : penup
setbackgroundcolor mediumblue
setbackgroundshade 10
;shade range -15 (white) to 15 (black)
setpenstyle "mark
setpenwidth 2
wrap ;wrap around edges
repeat 200 [
;do the below 200 times:
randomposition
dropanchor ;set anchor point here
;turtle orbits around anchor point
pullout random [100]
;pullout from anchor point
;random number from [1 - 100]
setpencolor pick [1 2 7 8 9 10 15]
setpenshade -4 + random 10
pendown
repeat random [300] [
;do from [1 to 300] times:
(setpenwidth
(clamp ;restrict result
penwidth + (random [-1 1]) / 8
;random number from -1 to 1
0 ;clamp minimum
3 ;clamp maximum
)
) ;end setpenwidth
orbitleft 1
;orbit to the left 1 degree
]
penup : randomposition
setfillcolor pencolor
setfillshade penshade
spot random [4] ;[1 to 4]
] ;do the above 199 more times
END](https://pbs.twimg.com/media/Gd0QQOJXwAAROmq.jpg)
Spots In Boxes #creativecoding #stemeducation #turtleart #artcoding #codeart #computerart
Inspired by Yuta Aoki @yuta_0_p5 (Thank you!)
https://t.co/WoHqDjwH3R
TO spotsinboxes
reset : hideturtle : penup
setbackgroundcolor brown
setpenstyle "mark
make "i 0 ;define :i container and put 0 in it
repeat 15 [ ;15 levels of spots and boxes:
;repcount = REPeat COUNTer (current loop)
;repabove X = REPeat counter ABOVE X levels
make "i :i + repcount
;add current REPeat loop COUNTer to :i
;the successive values of :i will be 1, 3, 6, 10, 15...
raise 1 ;raise turtle towards camera
;define the pen:
setpencolor item 1 + remainder repcount 5 [9 6 11 14 13]
setpenwidth repcount : setpenshade 17 - 2 * repcount
;create the box
box {2 * :i} ;{around the turtle}
repeat 5 [ ;five hatchlings on each level:
hatch [ ;create hatchling, running this code:
setbounds {-:i -:i :i :i} ;set bounds for bounce
bounce ;enable bounce
setmodel [ ;create hatchling model:
;define pen:
setpencolor item 1 + remainder repcount 5 [2 3 4 8 1]
setpenwidth :i / 40
setpenstyle "mark
setpenshade 17 - 2 * repabove 1
;define fill:
setfillcolor item repcount [9 6 11 14 13]
setfillopacity 70
setfillshade penshade
spot :i / 8 ;filled circle
circle 1.1 * (:i / 8) ;pen circle
]
penup : showturtle
randomheading ;set a random direction
forever [
forward :i / (120 - 10 * repcount)
sync ;wait for all others to sync
]
] ;end of hatch
] ;end of repeat 5
] ;end of repeat 11
forever [
;loopcount = forever LOOP COUNTer
cam:run [ ;direct camera turtle:
;the camera turtle points at what
;it is looking at. So by default
;it is pointing at Myrtle (the
;default drawing turtle)
pullout sin loopcount ;pull back away
rollright 0.25 ;roll to the right
]
sync ;sync all hatchlings
]
END
Ring Toss #creativecoding #dailyart #artcoding
#codeart #stemeducation #cs #CodeNewbies
Inspired by @art_ogi (thank you!)
https://t.co/FnArZiffQR
TO ringtoss
reset : hideturtle : penup
sethatchlimit 121
;maximum number of hatchlings
randombackgroundcolor
setbackgroundshade 8
;shade range -15 (light) to 15 (dark)
repeat 11 [
;position turtle in Y axis (vertical)
sety 120 - 20 * repcount
;repcount = REPeat loop COUNTer
repeat 11 [
;position turtle in X axis (horizontal)
setx -120 + 20 * repcount
hatch [ ;create new hatchling:
setmodel [ ;create hatchling model:
setfillcolor repcount
;fill color used by shapes (range 0 - 15)
setfillshade -14 + 2 * repabove 1
;repabove X = REPeat counter ABOVE 1 (parent)
twosided ;light both sides of shape
ring 2, repcount / 1.5, 8
;ring width, inner-radius, sides
]
penup : wrap : showturtle
setbounds [-110 -110 110 110]
;set bounds used by wrap (square)
sync ;wait for other hatchlings to settle
forever [
make "d random [10]
;pick number from 1 to 10 and put in in :d container
setheading 90 * random 4
;set heading (direction) to 0, 90, 180 or 270 degrees
setanchor extrapolate position, forwarddir, 20
;extrapolate anchor point 20 turtle-units in front
;of hatchling (next grid position in front of it)
repeat 15 [
;based on contents of :d, orbit around anchor
;(or do nothing if :d > 4):
switch "d
case 1 [orbitright 6]
case 2 [orbitleft 6]
case 3 [orbitup 12]
case 4 [orbitdown 12]
sync ;wait for other hatchlings / parent
;turtle to sync
] ;do the above 14 more times
] ;do the above forever
] ;end of hatch
;parent turtle code resumes:
] ;do the above 10 more times
] ;do the above 10 more times
wait 180 ;wait 3 seconds for hatchlings to settle
forever [sync : wait 5]
;forever sync and wait 5/60ths of a second
END
'Hope in darkness'
Symbolizing the enduring spirit of hope. Inside the flower, set against the hues of sunrise, heralding the arrival of hope. The flower seems to bloom in response to the shifting light, against the darkness.
#GLSL #creativeart #digitalart #cryto #artcoding
La fecha límite este año es el 25/10
Aceptamos #chiptunemusic #mp3music #pixelart
#voxelart #freestylegfx #textart #teletext #ascii #ansi
#petscii #atascii #indievideogamedev #animation
#trackedmusic #intro64k #intro4k #intro256bytes
#demo #artcoding
https://t.co/ULrtOZ5cWT

https://t.co/uyjayYEyiW
Obliques by @cc0x0x0 @heyjeres @marcmaurerr
going crazy floor price 4 TEZ already
#tezos
#TezosCollector
#fxhash
#objkt
#cc0c0x0
#marcmaurer
#parallels
#processing
#artcoding
#p5js
https://t.co/BuARu35Vif
''A Study Of Arpeg XXX2.55555''
support ASOA in SOL: GzLQhw8RAynMUmBKjmHwG47xutRvRxeZkCFS9hq
#inagrm #fxhash #objkt #tezos #decaart #maxmsp #p5js
#fidenza #ringers #processing #generativeart #artcoding #gl
currently working with
#scientists , #developers and #creativecoders
with two aims:
1)exploring the aesthetic possibilities of a smart contract
2)using blockchain as an artistic medium
#artscience #artcoding #artonchain #jpegs
Random background
+
Random molecule
=
Digital drugs
All #generativeart #NFTProject All #onchain #p5js #decentralized
To cook soon on @faction_nft 👇
Methcathinone:
is an amine related to cathinone and also has the pharmacological characteristics of the amphetamine class.
To be cooked soon on @faction_nft
#degenart #artcoding #decentralart #bionft #digitaldrugs


Generative sketch - night in city
#digitalart #generative #creativecoding #processing #artcoding #generativeart #genartclub #NFTs #NFTartists

Which window is yours?
#generative #creativecoding #processing #artcoding #generativeart #nftart #nft


Most Popular Users

Elon Musk 
@elonmusk
241.3M followers

Barack Obama 
@barackobama
119.1M followers

Cristiano Ronaldo 
@cristiano
113M followers

Donald J. Trump 
@realdonaldtrump
111.8M followers

Narendra Modi 
@narendramodi
107.1M followers

Rihanna 
@rihanna
98.3M followers

NASA 
@nasa
92.3M followers

Justin Bieber 
@justinbieber
91.5M followers

KATY PERRY 
@katyperry
89.1M followers

Taylor Swift 
@taylorswift13
83M followers

Lady Gaga 
@ladygaga
74.5M followers

Virat Kohli 
@imvkohli
72.1M followers

Kim Kardashian 
@kimkardashian
70.5M followers

YouTube 
@youtube
68.8M followers

Neymar Jr 
@neymarjr
65M followers

Bill Gates 
@billgates
64.7M followers

The Ellen Show
@theellenshow
62.4M followers

Selena Gomez 
@selenagomez
62.2M followers

CNN 
@cnn
61.8M followers

X 
@x
60.8M followers
















