Trending

#TurtleGraphics

Latest posts tagged with #TurtleGraphics on Bluesky

Latest Top
Trending

Posts tagged #TurtleGraphics

Turtletoy is lauded as a modern, accessible implementation of turtle graphics. It brings the joy of LOGO to contemporary creative coders, making it easy to jump in and start drawing with code. #TurtleGraphics 4/6

0 0 1 0
Inigo Quilez :: computer graphics, mathematics, shaders, fractals, demoscene and more Tutorials and articles of Inigo Quilez on computer graphics, fractals, demoscene, shaders and more.

Might be hard to top this for a #LinkOfTheDay.

Hat tip to @f15y.com !

iquilezles.org/articles/dis...

Shows how to draw various shapes in #PixelShaders

Might be useful to anyone learning #GameDev or #Graphics.

Will be useful to future iterations of #Turtle #PowerShell #TurtleGraphics ๐Ÿข

8 3 1 0
A Lingual Fractal of itself.  This Lingual Fractal generates a square based off the size of each word and rotates, creating a beautiful and chaotic checkboard pattern.

A Lingual Fractal of itself. This Lingual Fractal generates a square based off the size of each word and rotates, creating a beautiful and chaotic checkboard pattern.

Made another #LingualFractal in #Turtle #PowerShell

Turn any message into a #Fractal with a bit of #TurtlePower

Want to learn how?

Join the discussion:

github.com/PowerShellWe...

Check more examples:

psturtle.com/Commands/Get...

#SVG #Cybersecurity #Stenography #TurtleGraphics #MathArt

2 0 0 0
~~~PowerShell
#requires -Module Turtle
param(
[string]
$Message = "
We can turn any message into #TurtleGraphics to make #LingualFractals

#PowerShell #Fractal #MathArt #Stenography #SVG #WebDev #Turtle #TurtlePower 

Learn more and share yours:
",

[double]
$Scale = 10
)

$turtleArgs = @()
$morphToArgs = @()
$words = @($Message -split '[\s\p{P}]+')
for ($wordNumber = 0; $wordNumber -lt $words.Length; $wordNumber++) {
    $word = $words[$wordNumber]
    $nextWord = $words[$wordNumber + 1]

    $moveForward = @('circle', ($word.Length * $Scale), 0.25)
    $turtleArgs += $moveForward
    $morphToArgs += $moveForward

    if ($nextWord) {
        $arcStart = @('circlearc', ($word.Length * $Scale))
        $turtleArgs += $arcStart
        $morphToArgs += $arcStart
        $turtleArgs +=
            [Math]::Atan2($nextWord.Length, $word.Length)  * 180 / [Math]::PI
        $morphToArgs +=
            [Math]::Atan2($nextWord.Length, $word.Length)  * -180 / [Math]::PI
        $postRotate = @(
            'rotate'
            [Math]::Atan2($nextWord.Length, $word.Length)  * 180 / [Math]::PI
        )
            
        $turtleArgs += $postRotate
        $morphToArgs += $postRotate
    }
}

$colors = @('#4488ff','#224488', '#012456')

$style = @(
    'fillrule', 'evenodd', 'fill', @($colors | Get-Random -count 2), 'stroke', @($colors | Get-Random -count 2)
)

turtle @style @turtleArgs Morph @(
    turtle @turtleArgs
    turtle @morphToArgs
    turtle @turtleArgs
) save ./LingualFractalArcMorph.svg show

turtle @style @turtleArgs save ./LingualFractalArcColor.svg save ./LingualFractalArcColor.png
~~~

~~~PowerShell #requires -Module Turtle param( [string] $Message = " We can turn any message into #TurtleGraphics to make #LingualFractals #PowerShell #Fractal #MathArt #Stenography #SVG #WebDev #Turtle #TurtlePower Learn more and share yours: ", [double] $Scale = 10 ) $turtleArgs = @() $morphToArgs = @() $words = @($Message -split '[\s\p{P}]+') for ($wordNumber = 0; $wordNumber -lt $words.Length; $wordNumber++) { $word = $words[$wordNumber] $nextWord = $words[$wordNumber + 1] $moveForward = @('circle', ($word.Length * $Scale), 0.25) $turtleArgs += $moveForward $morphToArgs += $moveForward if ($nextWord) { $arcStart = @('circlearc', ($word.Length * $Scale)) $turtleArgs += $arcStart $morphToArgs += $arcStart $turtleArgs += [Math]::Atan2($nextWord.Length, $word.Length) * 180 / [Math]::PI $morphToArgs += [Math]::Atan2($nextWord.Length, $word.Length) * -180 / [Math]::PI $postRotate = @( 'rotate' [Math]::Atan2($nextWord.Length, $word.Length) * 180 / [Math]::PI ) $turtleArgs += $postRotate $morphToArgs += $postRotate } } $colors = @('#4488ff','#224488', '#012456') $style = @( 'fillrule', 'evenodd', 'fill', @($colors | Get-Random -count 2), 'stroke', @($colors | Get-Random -count 2) ) turtle @style @turtleArgs Morph @( turtle @turtleArgs turtle @morphToArgs turtle @turtleArgs ) save ./LingualFractalArcMorph.svg show turtle @style @turtleArgs save ./LingualFractalArcColor.svg save ./LingualFractalArcColor.png ~~~

We can turn any message into #TurtleGraphics to make #LingualFractals ๐Ÿ˜Ž๐Ÿข

#PowerShell #Fractal #MathArt #Stenography #SVG #WebDev #Turtle #TurtlePower

Learn more and share yours:

github.com/PowerShellWe...

Source in image description. #Animation at url.

3 2 0 0
Preview
GitHub - PowerShellWeb/Turtle: Turtle Graphics in PowerShell Turtle Graphics in PowerShell. Contribute to PowerShellWeb/Turtle development by creating an account on GitHub.

In the newer coolness category there is also #Turtle.

#TurtleGraphics in #PowerShell, outputting to #SVG, #CSS, #HTML, #XML

For discords context, this could open the door to infinite icons and safe, sharable vector graphics.

Also, just plain fun #TurtlePower.

github.com/PowerShellWe...

1 0 0 0
Preview
Get-Turtle Turtle Graphics in PowerShell. Draw any image with turtles in a powershell.

New bits of #Turtle #PowerShell are out! ๐Ÿข

Check out more than 130 examples of #TurtleGraphics #MathArt with short source code.

psturtle.com/Commands/Get...

Turtles can live in #HTML and use #CSS.

They're a great way to generate #SVG assets for #WebDev and #GameDev.

Enjoy the new #TurtlePower!

16 5 0 0
Post image

#TurtleGraphics

1 0 0 0
Preview
Audio Visualizer A simple audio visualizer using the Web Audio API, made with PowerShell.

Want to learn how to make an amazing visualiser using #JavaScript and the #WebAudio apis? (with bits of #SVG and #TurtleGraphics thrown in for fun)

This little #PowerShell code generation project is getting out of hand (in the best of all possible ways)

mrpowershell.com/HTML/AudioVi...

Thoughts?

2 0 0 0
Post image Post image Post image

Use case for my Turtle Graphics ComfyUI node. ComfyUI node ImageCompositeMasked applied to a Turtle Graphics image and an AI created image.

#TurtleGraphics #ComfyUI #node #AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #digitalart #digitalartwork

0 0 0 0
Preview
GitHub - zentrocdot/ComfyUI-Turtle_Graphics_Demo: ComfyUI-Turtle_Graphics_Demos ComfyUI-Turtle_Graphics_Demos. Contribute to zentrocdot/ComfyUI-Turtle_Graphics_Demo development by creating an account on GitHub.

Here is the link for the one who like to test my Turtle Graphics ComfyUI node for fun or for an idea.

github.com/zentrocdot/C...

#TurtleGraphics #ComfyUI #node #AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #digitalart #digitalartwork

0 0 0 0
Post image

Third ComfyUI node in the group of spiral nodes. Color transition based on percentages.

#AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #digitalart #digitalartwork #promptart #GenerativeAI #ComfyUI #node #Turtlegraphics

0 0 0 0
Post image

Showcase for background color removal by my ComfyUI node. Black background removed. Zoom in to see how good it works.

#spirograph #AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #digitalart #digitalartwork #promptart #GenerativeAI #ComfyUI #Turtlegraphics

0 0 0 0
Post image

Next ComfyUI Node where I applied the Hue To RGB approach for the transition of the colors.

#spirograph #AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #digitalart #digitalartwork #promptart #diffusionmodels #GenerativeAI #ComfyUI #Turtlegraphics

0 0 0 0
Post image

Increasing pen size while rotation lets look an image different.

#spirograph #AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #digitalart #digitalartwork #promptart #diffusionmodels #GenerativeAI #SDXL #ComfyUI #Turtlegraphics

0 0 0 0
Post image

Next level in pattern generation. My next ComfyUI node is coming soon.

#spirograph #AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #digitalart #digitalartwork #promptart #diffusionmodels #GenerativeAI #SDXL #ComfyUI #Turtlegraphics

0 0 0 0
Post image

Example how to add a splash screen to ComfyUI.

#ComfyUI #TurtleGraphics #turtles #node #Tkinter

0 0 0 0
Post image

Posibilities of ComfyUI and Turtle Graphics.

#TurtleGraphics #ComfyUI

0 0 0 0
Video

Spirograph animation.

#Spirograph #TurtleGraphics #ComfyUI #Epitrochoid

0 0 0 0
Video

Spirograph animation.

#Spirograph #TurtleGraphics #ComfyUI #Epitrochoid

0 0 0 0
Post image

Epitrochoid drawn with my ComfyUI node. Colorful with background removal.

#Spirograph #TurtleGraphics #ComfyUI #Epitrochoid

0 0 0 0
Post image

Epitrochoid drawn with my ComfyUI node.

#Spirograph #TurtleGraphics #ComfyUI #Epitrochoid

0 0 0 0
Post image

Epitrochoid drawn with my ComfyUI node.

#Spirograph #TurtleGraphics #ComfyUI #Epitrochoid

0 0 0 0
Preview
ComfyUI Epitrochoid Node Spirograph images and simulations created with ComfyUI and a Turtle Graphics node

ComfyUI Epitrochoid Node www.copus.io/work/aee9315...

#AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #GenerativeAI #digitalart #digitalartwork #promptart #diffusionmodel #ComfyUI #workflow #node #turtlegraphics

0 0 0 0
Preview
Turtle Graphics & Tkinter Possibilities of Turtle Graphics together with Tkinter

Turtle Graphics & Tkinter www.copus.io/work/ac7fd51...

#AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #GenerativeAI #digitalart #digitalartwork #promptart #diffusionmodel #ComfyUI #workflow #node #turtlegraphics

0 0 0 0
Preview
AI Meets Turtle Graphics AI image used within Turtle Graphics

AI Meets Turtle Graphics www.copus.io/work/006adb2...

#AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #GenerativeAI #digitalart #digitalartwork #promptart #diffusionmodel #ComfyUI #workflow #node #turtlegraphics

0 0 0 0
Preview
Colorful Spirals Creating colorful spirals using Turtle Graphics

Colorful Spirals www.copus.io/work/29dd027...

#AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #GenerativeAI #digitalart #digitalartwork #promptart #diffusionmodel #ComfyUI #workflow #node #turtlegraphics

0 0 0 0
Preview
Turtle Graphics Meets AI ComfyUI workflow for creating spiral like objects

Turtle Graphics Meets AI www.copus.io/work/f8e82c1...

#AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #GenerativeAI #digitalart #digitalartwork #promptart #diffusionmodel #ComfyUI #workflow #Node #turtlegraphics

2 0 0 0
Preview
QR Code, Turtle Graphics and Transparent Background ComfyUI workflow for creating an image/logo which is added to a QR code

QR Code, Turtle Graphics and Transparent Background www.copus.io/work/b90ffde...

#AIart #AIartwork #AIimage #AIimagegeneration #AIgenerated #GenerativeAI #digitalart #digitalartwork #promptart #diffusionmodel #ComfyUI #workflow #Node #QRCode #images #masks #turtlegraphics

0 0 0 0
Post image Post image Post image Post image

Today's Awesome Moment in Class: Python has Turtles & PyGame libraries for graphics / drawing.

Watching my students, I hope Seymour Papert, Wally Feurzeig and Cynthia Solomon are smiling. Logo started something amazing these kids need these days.

#EduSky #Python #TurtleGraphics #ProgramFractals

2 0 0 0