Thursday, February 13, 2025

Circle Animation with ImGui

 Circle Animation with ImGui for C++

Youtube:


Source code:

void CircFunc()
{
    static int nc = 360;
    double radius = 300;
    static float mul = 1;
    ImGui::Begin("Settings");
    ImGui::InputInt("Number", &nc, 2, 1000);
    ImGui::InputFloat("Multiply", &mul, 0.01f, 1.0f, "%.3f");
    ImGui::SliderInt("Number_", &nc, 2, 1000);
    ImGui::SliderFloat("Multiply_", &mul, 0.0f, 100.0f);
    ImGui::End();
    ImGui::Begin("Canvas");
    ImVec2 window_pos = ImGui::GetWindowPos();
    ImVec2 window_size = ImGui::GetWindowSize();
    ImVec2 cent = ImVec2(window_pos.x + window_size.x * 0.5f, window_pos.y + window_size.y * 0.5f);
    ImDrawList* drawlist = ImGui::GetWindowDrawList();
    drawlist->AddCircle(cent, radius, IM_COL32(255, 255, 255, 255));
    double divang = PI2 / nc;
    for (int i=0;i<nc;i++)
    {
        double b = i * mul;
        double x1 = cent.x + cos(i * divang) * radius;
        double y1 = cent.y + sin(i * divang) * radius;
        double x2 = cent.x + cos(b * divang) * radius;
        double y2 = cent.y + sin(b * divang) * radius;
        drawlist->AddLine(ImVec2((float)x1, (float)y1), ImVec2((float)x2, (float)y2), IM_COL32(255, 255, 255, 255));
    }
    ImGui::End();
}

Wednesday, February 12, 2025

Spirographs in C#

 Spirographs in C#

Youtube:



Sourcecode:

https://github.com/resoftw/Youtube.git

Sunday, February 9, 2025

Harmonic Motion Art

 Harmonic Motion Art

Youtube:




Required library: raylib
pip install raylib

Source code:
from pyray import *
from raylib import *
from math import sin, cos, pi, sqrt
from random import random
from time import sleep

SW = 540
SH = 960
CX = SW / 2
CY = SH / 2
MAXR = 540/2-10
NSEG = 3
set_config_flags(FLAG_MSAA_4X_HINT)
init_window(SW, SH, "Anim")
lens = []
rots = []
angs = []
pts = []
dly =0.1
LC = (0,225,255)

def distance(point1, point2):
    return sqrt((point1[0] - point2[0]) ** 2 + (point1[1] - point2[1]) ** 2)


def rndrot():
    return round(100*random()-50)*5/100

def reset():
    global lens,rots,angs,pts,dly
    pts = []
    lens = []
    rots = []
    angs = []
    dly=0.05
    mr = MAXR-5
    for i in range(NSEG):
        rots.append(rndrot())
        angs.append(0)
        lens.append(MAXR/NSEG)
    print(lens)
    print(rots)
reset()
dowait = False
waitcount=0
while not window_should_close():
    begin_drawing()
    if not dowait:
        clear_background(BLACK)
       
        x = CX
        y = CY
        a = 0
        for i in range(NSEG):
            x1 = x + cos((angs[i] + a) * pi / 180) * lens[i]
            y1 = y + sin((angs[i] + a) * pi / 180) * lens[i]
           
            draw_line_ex([x, y], [x1, y1], 2, RED)
            draw_circle_v([x1, y1], 5, GREEN)
           
            x = x1
            y = y1
            a += angs[i]
            angs[i] += rots[i]
       
        pts.append([x, y])
        draw_line_strip(pts, len(pts), WHITE)
        if len(pts) > 2:
            start_point = Vector2(pts[0][0], pts[0][1])
            end_point = Vector2(pts[len(pts) - 1][0], pts[len(pts) - 1][1])
           
            dist = distance([start_point.x, start_point.y], [end_point.x, end_point.y])
           
            if dist < 0.1:
                dowait=True
                waitcount=10000
       
       
       
    else:
        clear_background(BLACK)
        draw_line_strip(pts, len(pts), WHITE)
        waitcount-=10
        if waitcount<=0:
            reset()
            dowait=False
    end_drawing()
    if IsKeyPressed(32):
        dowait=False
        reset()
    sleep(dly)
    if dly>0.00001:
        dly/=1.025


close_window()

Thursday, March 7, 2024

Python Turtle Graphics Drawing - Gigabyte

 Python Turtle Graphics Drawing - Gigabyte

Youtube





Source code:

from turtle import *
setup(600,600)
color('#2D68AE')
up()
lt(90)
fd(136)
down()
begin_fill()
rt(90)
fd(117)
lt(90)
fd(59)
lt(90)
fd(130)
lt(1.1)
circle(141.1,166.7)
lt(57.2)
fd(230.5)
lt(135)
fd(98.5)
lt(90)
fd(95)
rt(90)
fd(24.5)
lt(0.7)
circle(-76,181.5)
end_fill()

color('#C92331')
up()
rt(70.9)
fd(238.1)
down()
begin_fill()
lt(161.6)
fd(117.5)
rt(90)
fd(117.5)
rt(135)
fd(166.2)
end_fill()
up()
fnt = ('Lucida Sans',60,'bold')
color('#2D68AE')
goto(0,-220)
write('GIGABYTE',font=fnt,align='center')

done()

Saturday, February 17, 2024

Python Turtle Graphics Drawing - GOJEK

 Python Turtle Graphics Drawing - GOJEK

Youtube



Source code:

import math
from turtle import *
SCALE=3.5
setup(560,560)
shape('turtle')
color('#00AA13')
up()
fd(22.5*SCALE)
lt(90)
down()
begin_fill()
circle(22.5*SCALE)
end_fill()
up()
lt(90)
fd(22.5*SCALE)
lt(100)
R = 48.75
y = 11.25
x = math.sqrt(R*R-y*y)
ang = math.degrees(math.atan2(y,x))
ang2 = 180-(ang+90)
angt = (180-ang)/2
ang3 = angt-ang2
fd(x*SCALE)
lt(90)
fd(y*SCALE)
lt(ang3*2)
down()
pensize(22.5*SCALE)
circle(R*SCALE,340-ang*2)
done()

Tuesday, February 13, 2024

Python Turtle Graphics Drawing - WALL'S Logo

Python Turtle Graphics Drawing - WALL'S Logo

Youtube


Source code:

from turtle import *
from math import atan2,degrees

LOGO = [
    [-68,11.6],[-117.6,44.9],[-105,90],[-85.7,133.8],
    [-29.3,118],[-6,75],[-2.6,69.5],[1.9,71.1],[6.2,77.5],
    [45.7,133.4],[97.9,122],[106,77],[114.2,6.9],
    [45.2,-38.6],[0,-48],[-82.9,-44.8],[-188.1,-1.9],
    [-221,63],[-251.2,144.1],[-191.8,184.4],[-121,189],
    [-71.9,189.4],[-32.8,173.8],[-6.5,151.9],[-1.4,147.1],
    [2.4,148.7],[5.9,151.9],[95.5,212.5],[180.4,186.6],
    [212,141],[263.5,63.7],[172.5,-15.9],[131.9,-45.1],
    [114.9,-56.4],[121.3,-62.1],[135.8,-55.4],[251.4,-11.3],
    [291,70.7],[273,140],[234.8,246.2],[83.6,247.4],
    [5.6,188.1],[0.5,183.8],[-2.5,184.2],[-7,187.6],
    [-93.7,250.3],[-222.9,234],[-259,178],[-306.9,105.2],
    [-263,19.8],[-155,-37],[-90.9,-66.1],[-42.8,-75.6],
    [0,-78],[109.5,-53],[176.7,41.3],[157,99],[138.8,165],
    [64.6,162.7],[6.2,113.8],[-0.4,107],[-3,108.1],[-8,114],
    [-50.1,159.4],[-118.8,167.2],[-156,121],[-183.2,78],
    [-149.2,31.5],[-100,9],[-68.9,-8.2],[-37.7,-16.4],
    [-11,-18],[-3.7,-19.3],[-2.9,-12.6],[-10,-11],
]

S1 = [
    [215.5,-206.2],[227.3,-207.7],[231.5,-197.2],
    [233.6,-186.6],[220.5,-183.9],[213.5,-181.6],
    [188.5,-173],[188.2,-150.3],[194,-138],
    [204.3,-113.3],[237.2,-113],[253,-137],
]

S2 = [
    [228.7,-139.9],[218.7,-140],[214.6,-145.3],
    [207.7,-157.1],[220.3,-161],[230,-164],
    [260.5,-173.1],[256.5,-205.7],[242.8,-218.7],
    [229.9,-230.8],[204.3,-230.4],[190,-209],
]

def cbezto(b,c,d):
    speed(150)
    a=pos()
    t = 0.0
    while t <= 1.0:
        t3 = t**3
        t2 = t**2
        f1 = -t3+3*t2-3*t+1
        f2 = 3*t3-6*t2+3*t
        f3 = -3*t3+3*t2
        f4 = t3
        x = a[0]*f1 + b[0]*f2 + c[0]*f3 + d[0]*f4
        y = a[1]*f1 + b[1]*f2 + c[1]*f3 + d[1]*f4
        d1 = -3*t2+6*t-3
        d2 = 9*t2-12*t+3
        d3 = -9*t2+6*t
        d4 = 3*t2
        dx = a[0]*d1 + b[0]*d2 + c[0]*d3 + d[0]*d4
        dy = a[1]*d1 + b[1]*d2 + c[1]*d3 + d[1]*d4
        angr = atan2(dy, dx)
        seth(degrees(angr))
        goto(x, y)
        t += 0.05
    goto(d)
    speed(5)

def L():
    begin_fill()
    fd(22)
    rt(90)
    fd(82)
    lt(90)
    fd(34)
    rt(90)
    fd(22)
    rt(90)
    fd(56)
    rt(90)
    fd(104)
    end_fill()


setup(640,640)
speed(5)
color('red')
shape('turtle')
up()
rt(132.3)
fd(14.9)
down()
begin_fill()
for i in range(len(LOGO)//3):
    cbezto(LOGO[i*3],LOGO[i*3+1],LOGO[i*3+2])
end_fill()

#W
up()
lt(43.5)
fd(269.7)
down()
begin_fill()
rt(178.7)
fd(22.4)
rt(95.9)
fd(65.2)
lt(137.9)
fd(65.6)
rt(138.2)
fd(66.1)
lt(138.5)
fd(66.5)
rt(96.6)
fd(21.5)
rt(85.1)
fd(110.7)
rt(134.3)
fd(61.8)
lt(134.3)
fd(61.8)
rt(134.8)
fd(110.3)
end_fill()

#A
up()
rt(147.5)
fd(161.5)
down()
begin_fill()
lt(98.8)
fd(114.9)
rt(127.1)
fd(114)
rt(88.8)
fd(21.5)
rt(90)
fd(21.5)
lt(62.2)
fd(45)
lt(68.2)
fd(21.5)
rt(94.8)
fd(22.4)
end_fill()

#A
up()
lt(255.7)
fd(78)
down()
color('white')
begin_fill()
rt(163.3)
fd(31.8)
lt(114.1)
fd(25)
lt(112.5)
fd(31.4)
end_fill()

color('red')
#L
up()
rt(84)
fd(81.9)
down()
rt(28.4)
L()
#L
up()
lt(270)
fd(80)
down()
L()
#S
up()
lt(231.1)
fd(140.1)
down()
begin_fill()
lt(83.5)
fd(21.8)
for i in range(4):
    cbezto(S1[i*3],S1[i*3+1],S1[i*3+2])
rt(83.9)
fd(22.6)
for i in range(4):
    cbezto(S2[i*3],S2[i*3+1],S2[i*3+2])
end_fill()

# '
up()
lt(2.4)
fd(71.6)
down()
begin_fill()
rt(61.9)
fd(44.9)
rt(96.9)
fd(21.5)
rt(90.5)
fd(44.3)
rt(88.3)
fd(15.7)
end_fill()
hideturtle()
done()

Sunday, February 11, 2024

Python Turtle Graphics Drawing - Old CAT Logo

 Python Turtle Graphics Drawing - Old CAT Logo

Youtube


Source code:

from turtle import *
setup(640,640)
color('gold')
up()
lt(135)
fd(424.3)
down()
begin_fill()
rt(135)
fd(600)
rt(90)
fd(600)
rt(90)
fd(600)
rt(90)
fd(600)
end_fill()

up()
rt(119.3)
fd(613.4)
down()
color('black')
begin_fill()
lt(119.3)
circle(235)
end_fill()
up()
lt(47.7)
fd(371.7)
down()
color('gold')
begin_fill()
lt(132.3)
fd(495)
lt(90)
fd(80)
lt(90)
fd(205)
rt(90)
fd(210)
lt(90)
fd(80)
lt(90)
fd(210)
rt(90)
fd(210)
lt(90)
fd(80)
end_fill()
done()

Saturday, February 10, 2024

Python Turtle Graphics Drawing - AMD Logo

  Python Turtle Graphics Drawing - AMD Logo






Source code:
from turtle import *
from math import atan2,degrees

def cbezto(b,c,d):
    a=pos()
    t = 0.0
    while t <= 1.0:
        t3 = t**3
        t2 = t**2
        f1 = -t3+3*t2-3*t+1
        f2 = 3*t3-6*t2+3*t
        f3 = -3*t3+3*t2
        f4 = t3
        x = a[0]*f1 + b[0]*f2 + c[0]*f3 + d[0]*f4
        y = a[1]*f1 + b[1]*f2 + c[1]*f3 + d[1]*f4
        d1 = -3*t2+6*t-3
        d2 = 9*t2-12*t+3
        d3 = -9*t2+6*t
        d4 = 3*t2
        dx = a[0]*d1 + b[0]*d2 + c[0]*d3 + d[0]*d4
        dy = a[1]*d1 + b[1]*d2 + c[1]*d3 + d[1]*d4
        angr = atan2(dy, dx)
        seth(degrees(angr))
        goto(x, y)
        t += 0.05
    goto(d)


up()
lt(121.9)
fd(431.2)
down()
begin_fill()
rt(121.9)
fd(446)
rt(90)
fd(445)
rt(135.2)
fd(174.7)
rt(44.8)
fd(199)
lt(90)
fd(200)
rt(44.8)
fd(173.2)
end_fill()

up()
lt(175.5)
fd(190)
down()
begin_fill()
rt(40.7)
fd(181)
lt(90)
fd(180)
rt(135)
fd(175.4)
rt(45)
fd(182)
rt(90)
fd(179)
rt(45)
fd(178.2)
end_fill()

up()
rt(155.7)
fd(620.9)
down()
begin_fill()
lt(178.5)
fd(198.7)
rt(67.8)
fd(52)
rt(66)
fd(201.4)
rt(114)
fd(49)
rt(66.6)
fd(40.3)
lt(66.6)
fd(82)
lt(70.6)
fd(39.2)
rt(70.6)
fd(49)
end_fill()

up()
lt(180)
fd(230)
down()
begin_fill()
lt(90)
fd(184)
rt(90)
fd(41)
rt(49.5)
fd(90.8)
lt(98.9)
fd(90.8)
rt(49.5)
fd(39)
rt(90)
fd(184)
rt(90)
fd(45)
rt(90)
fd(116)
lt(139.7)
fd(77.3)
rt(49.7)
fd(7)
rt(49.7)
fd(77.3)
lt(139.7)
fd(116)
rt(90)
fd(46)
end_fill()

up()
lt(218.2)
fd(297.7)
down()
begin_fill()
rt(38.2)
fd(79)
cbezto((274,-175),(294,-196),(311,-219))
cbezto((327,-243),(328,-287),(311,-315))
cbezto((295,-341),(270,-355),(229,-359))
rt(7.2)
fd(89)
rt(90)
fd(184)
end_fill()

color('white')
up()
lt(106.5)
fd(405.6)
down()
begin_fill()
rt(127.7)
fd(77.3)
rt(136.1)
fd(78)
rt(112.6)
fd(58)
end_fill()

up()
lt(175.7)
fd(470.3)
down()
begin_fill()
rt(175.7)
fd(34)
rt(90)
fd(116)
rt(90)
fd(34)
cbezto((260,-209),(275,-237),(276,-260))
cbezto((278,-297),(261,-324),(220,-325))
end_fill()
up()
hideturtle()
done()

Tuesday, January 24, 2023

Python Turtle Graphics Drawing - PlayStation Logo

 Python Turtle Graphics Drawing - PlayStation Logo

Youtube


Source code:

from turtle import *
from math import atan2,degrees

setup(650,550)

def cbezto(b,c,d):
    a=pos()
    t = 0.0
    while t <= 1.0:
        t3 = t**3
        t2 = t**2
        f1 = -t3+3*t2-3*t+1
        f2 = 3*t3-6*t2+3*t
        f3 = -3*t3+3*t2
        f4 = t3
        x = a[0]*f1 + b[0]*f2 + c[0]*f3 + d[0]*f4
        y = a[1]*f1 + b[1]*f2 + c[1]*f3 + d[1]*f4
        d1 = -3*t2+6*t-3
        d2 = 9*t2-12*t+3
        d3 = -9*t2+6*t
        d4 = 3*t2
        dx = a[0]*d1 + b[0]*d2 + c[0]*d3 + d[0]*d4
        dy = a[1]*d1 + b[1]*d2 + c[1]*d3 + d[1]*d4
        angr = atan2(dy, dx)
        seth(degrees(angr))
        goto(x, y)
        t += 0.05
    goto(d)


up()
lt(108.1)
fd(225.2)
down()
begin_fill()
lt(161.9)
fd(399)
lt(72.7)
fd(94.3)
lt(107.3)
fd(338)
cbezto((22,155),(56,150),(56,113))
rt(5.5)
fd(137)
cbezto((129,-55),(163,-8),(156,70))
cbezto((150,152),(81,170),(57,179))
cbezto((15,194),(-36,208),(-70,214))
end_fill()

up()
lt(117)
fd(384.8)
down()
begin_fill()
rt(16.2)
fd(52)
lt(109.8)
fd(109)
cbezto((210.5,-143),(284.5,-129),(276.5,-95))
cbezto((269,-70),(194.5,-49.5),(140,-50))
cbezto((98.5,-49.5),(55,-61),(37.5,-67.5))
lt(71)
fd(54.5)
lt(109.7)
fd(95)
cbezto((157.5,-77.5),(198,-81.5),(197,-93))
cbezto((196.5,-102),(167.5,-108.5),(138,-119.5))
rt(0.1)
fd(106.8)
end_fill()

up()
rt(65.5)
fd(179.3)
down()
begin_fill()
lt(135.8)
fd(52.5)
rt(70.4)
fd(68.5)
cbezto((-174,-111.5),(-203,-117),(-192.5,-128.5))
cbezto((-179,-137.5),(-144.5,-135),(-124.5,-126))
rt(1.3)
fd(39.4)
rt(110)
fd(47)
rt(79.4)
circle(-301.2,20.8)
cbezto((-232,-152.5),(-275,-142),(-277,-116))
cbezto((-279,-92),(-229.5,-78),(-170,-56.5))
lt(0.1)
fd(87.6)
end_fill()

up()
rt(44.8)
fd(387.2)
down()
lt(115.1)
pensize(3.5)
circle(19.5)
up()

fnt=('Arial',24,'bold')
color('black')
goto(243.5,-210)
write('R',font=fnt,align='center')

hideturtle()
done()

Circle Animation with ImGui

 Circle Animation with ImGui for C++ Youtube: Source code: void CircFunc () {     static int nc = 360 ;     double radius = 300 ;     ...