基于Python绘制三种不同的中国结

 更新时间:2023年01月09日 15:01:41   作者:kaKA-小圆  
马上就要迎来新年了,就绘制了几个中国结,嘿嘿!本文为大家整理了三个绘制中国结的方法,文中的示例代码讲解详细,快跟随小编一起动手尝试一下吧

前言

今天就来分享几个用python绘制的图案吧

马上就要迎来新年了 就绘制了几个中国结,嘿嘿

话不多说,直接展示一下代码和效果图吧

示例一

效果图

代码展示

import turtle
turtle.screensize(600,800)
turtle.pensize(10)
turtle.pencolor("red")
turtle.seth(-45)
turtle.fd(102)
turtle.circle(-6,180)
turtle.fd(102)
turtle.circle(6,180)
turtle.fd(102)
turtle.circle(-6,180)
turtle.fd(102)
turtle.circle(6,180)
turtle.fd(102)
turtle.circle(-6,180)
turtle.fd(102)
turtle.circle(6,180)
turtle.fd(92)
turtle.circle(-6,270)
turtle.fd(92)
turtle.circle(6,180)
turtle.fd(102)
turtle.circle(-6,180)
turtle.fd(102)
turtle.circle(6,180)
turtle.fd(102)
turtle.circle(-6,180)
turtle.fd(102)
turtle.circle(6,180)
turtle.fd(102)
turtle.circle(-6,180)
turtle.fd(88)
turtle.fd(20)
turtle.seth(135)
turtle.fd(20)
turtle.seth(225)
turtle.fd(20)
turtle.seth(315)
turtle.fd(20)
turtle.seth(45)
turtle.fd(20)
turtle.seth(135)
turtle.begin_fill()
turtle.fillcolor("red")
turtle.fd(50)
turtle.seth(45)
turtle.fd(30)
turtle.seth(-45)
turtle.fd(30)
turtle.seth(225)
turtle.fd(30)
turtle.end_fill()
turtle.seth(90)
turtle.fd(40)
turtle.pensize(20)
turtle.fd(10)
turtle.pensize(5)
turtle.seth(105)
turtle.fd(30)
turtle.circle(-8,240)
turtle.circle(20,20)
turtle.fd(5)
turtle.circle(20,60)
turtle.fd(25)
turtle.penup()
turtle.setx(0)
turtle.sety(0)
turtle.goto(2,-127)
turtle.pendown()
turtle.pensize(5)
turtle.begin_fill()
turtle.fillcolor("red")
turtle.seth(0)
turtle.fd(15)
turtle.seth(-90)
turtle.fd(10)
turtle.seth(180)
turtle.fd(15)
turtle.seth(90)
turtle.fd(10)
turtle.seth(0)
turtle.fd(15)
turtle.end_fill()
turtle.pensize(2)
for x in range(6):
     turtle.seth(-90)
     turtle.fd(50)
     turtle.penup()
     turtle.seth(90)
     turtle.fd(50)
     turtle.seth(180)
     turtle.fd(3)
     turtle.pendown()
​​​​​​​
turtle.done()

示例二

效果图

如图所示 在代码里找到文字所在的地方,自己进行一下编辑,是可以加自己想加的话进去的

代码展示

import turtle as t
def goto(x,y):
    t.penup()
    t.goto(x,y)
    t.pendown()
    
def init():
    t.setup(800,800)
    t.pensize(10)
    t.pencolor("red")
    t.speed(14)
    
def jiexin():
    m,n=0,200
    for i in range(11):
        goto(m,n)
        t.seth(-45)
        t.fd(200)
        m-=20/pow(2,0.5)
        n-=20/pow(2,0.5)
        
    m,n=0,200
    for j in range(11):
        goto(m,n)
        t.seth(-135)
        t.fd(200)
        m+=20/pow(2,0.5)
        n-=20/pow(2,0.5)
        
def jiexiaoban():
    m=-20/pow(2,0.5)
    n=200-20/pow(2,0.5)
    for k in range(4):
        goto(m,n)
        t.seth(135)
        t.fd(20)
        t.circle(10,180)
        t.fd(20)
        m-=40/pow(2,0.5)
        n-=40/pow(2,0.5)
        
    m=20/pow(2,0.5)
    n=200-20/pow(2,0.5)
    for k in range(4):
        goto(m,n)
        t.seth(45)
        t.fd(20)
        t.circle(-10,180)
        t.fd(20)
        m+=40/pow(2,0.5)
        n-=40/pow(2,0.5)
 
    m=20/pow(2,0.5)
    n=200-200*pow(2,0.5)+20/pow(2,0.5)
    for k in range(4):
        goto(m,n)
        t.seth(-45)
        t.fd(20)
        t.circle(10,180)
        t.fd(20)
        m+=40/pow(2,0.5)
        n+=40/pow(2,0.5)
        
    m=-20/pow(2,0.5)
    n=200-200*pow(2,0.5)+20/pow(2,0.5)
    for k in range(4):
        goto(m,n)
        t.seth(-135)
        t.fd(20)
        t.circle(-10,180)
        t.fd(20)
        m-=40/pow(2,0.5)
        n+=40/pow(2,0.5)
        
def waiyuan():
    goto(90*pow(2,0.5),200-110*pow(2,0.5))
    t.seth(-45)
    t.circle(20,270)
    
    goto(-90*pow(2,0.5),200-110*pow(2,0.5))
    t.seth(-135)
    t.circle(-20,270)
    
    goto(80*pow(2,0.5),200-120*pow(2,0.5))
    t.seth(-45)
    t.circle(40,270)
    
    goto(-80*pow(2,0.5),200-120*pow(2,0.5))
    t.seth(-135)
    t.circle(-40,270)
 
def shengzi():
    goto(0,200)
    t.pensize(20)
    t.seth(90)
    t.fd(60)
    goto(0,320)
    t.pensize(12)
    t.seth(180)
    t.circle(30,360)
         
def hanzi():
    goto(-150,325)
    t.write("Python",font=("Arial",40,"normal"))
    
def main():
    init()
    jiexin()
    jiexiaoban()
    waiyuan()
    shengzi()
    hanzi()
    t.hideturtle()
    t.done()
main()

示例三

效果图

这个其实跟第二个差不多 就是没有上面那行字体

代码展示

import turtle as t
from math import sqrt


class chineseKnot:

    def __init__(self) -> None:
        # 画笔初始化
        self.t = t
        self.t.pensize(10)
        self.t.setup(700, 700)
        self.t.pencolor("red")
        self.t.speed(14)
        # 结心坐标
        self.x = 0
        self.y = 200


    def drawKnot(self) -> None:
        self.drawBody()
        self.drawEdge()
        self.drawAdorn()
        self.t.hideturtle()
        self.t.done()


    def drawBody(self) -> None:
        for i in range(11):
            self.__goto(self.x - i * 10 * sqrt(2), self.y - i * 10 * sqrt(2))
            self.t.seth(-45)
            self.t.fd(200)
            self.__goto(self.x + i * 10 * sqrt(2), self.y - i * 10 * sqrt(2))
            self.t.seth(-135)
            self.t.fd(200)

    def drawEdge(self) -> None:
        for i in range(4):
            # 左上角
            self.__goto(-10 * sqrt(2) - i * 20 * sqrt(2),
                        200 - 10 * sqrt(2) - i * 20 * sqrt(2))
            self.t.seth(135)
            self.t.fd(20)
            self.t.circle(10, 180)
            self.t.fd(20)

            # 右上角
            self.__goto(10 * sqrt(2) + i * 20 * sqrt(2),
                        200 - 10 * sqrt(2) - i * 20 * sqrt(2))
            self.t.seth(45)
            self.t.fd(20)
            self.t.circle(-10, 180)
            self.t.fd(20)

            # 左下角
            self.__goto(-10 * sqrt(2) - i * 20 * sqrt(2),
                        200 - 190 * sqrt(2) + i * 20 * sqrt(2))
            self.t.seth(-135)
            self.t.fd(20)
            self.t.circle(-10, 180)
            self.t.fd(20)

            # 右下角
            self.__goto(10 * sqrt(2) + i * 20 * sqrt(2),
                        200 - 190 * sqrt(2) + i * 20 * sqrt(2))
            self.t.seth(-45)
            self.t.fd(20)
            self.t.circle(10, 180)
            self.t.fd(20)

        # 左侧
        self.t.seth(-45)
        self.__goto(90 * sqrt(2), 200 - 110 * sqrt(2))
        self.t.circle(20, 270)
        self.__goto(-90 * sqrt(2), 200 - 110 * sqrt(2))
        self.t.circle(-20, 270)

        # 右侧
        self.__goto(80 * sqrt(2), 200 - 120 * sqrt(2))
        self.t.circle(40, 270)
        self.__goto(-80 * sqrt(2), 200 - 120 * sqrt(2))
        self.t.circle(-40, 270)

    def drawAdorn(self):
        # 上侧
        self.__goto(self.x, self.y)
        self.t.pensize(14)
        self.t.seth(90)
        self.t.fd(60)
        self.__goto(0, 320)
        self.t.seth(180)
        self.t.circle(30, 360)


    def __goto(self, x: int, y: int) -> None:
        self.t.penup()
        self.t.goto(x, y)
        self.t.pendown()


if __name__ == '__main__':
    knot = chineseKnot()
    knot.drawKnot()

到此这篇关于基于Python绘制三种不同的中国结的文章就介绍到这了,更多相关Python绘制中国结内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Python队列Queue超详细讲解

    Python队列Queue超详细讲解

    Queue是python标准库中的线程安全的队列(FIFO)实现,提供了一个适用于多线程编程的先进先出的数据结构,即队列,用来在生产者和消费者线程之间的信息传递,本文给大家讲解Python队列Queue的相关知识,需要的朋友参考下吧
    2023-04-04
  • 完美解决Python matplotlib绘图时汉字显示不正常的问题

    完美解决Python matplotlib绘图时汉字显示不正常的问题

    今天小编就为大家分享一篇完美解决Python matplotlib绘图时汉字显示不正常的问题,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2019-01-01
  • Django 再谈一谈json序列化

    Django 再谈一谈json序列化

    这篇文章主要介绍了Django json序列化,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2020-03-03
  • 学习python的前途 python挣钱

    学习python的前途 python挣钱

    在本文里我们给大家整理了关于学习python的前途以及python挣钱的方法整理,有兴趣的朋友们阅读下。
    2019-02-02
  • Python爬取视频时长场景实践示例

    Python爬取视频时长场景实践示例

    这篇文章主要为大家介绍了Python获取视频时长场景实践示例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-07-07
  • Pycharm如何设置默认请求头和切换python环境

    Pycharm如何设置默认请求头和切换python环境

    这篇文章主要介绍了Pycharm如何设置默认请求头和切换python环境问题,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2024-06-06
  • 使用Flask-Login模块实现用户身份验证和安全性

    使用Flask-Login模块实现用户身份验证和安全性

    当你想要在你的Flask应用中实现用户身份验证和安全性时,Flask-Login这个扩展将会是你的最佳伙伴,它提供了一组简单而强大的工具来处理,下面我们就来看看具体的操作方法吧
    2023-08-08
  • Python中用字符串调用函数或方法示例代码

    Python中用字符串调用函数或方法示例代码

    字符串作为python中常用的数据类型,掌握字符串的常用方法十分必要。下面这篇文章主要给大家介绍了关于Python中通过字符串调用函数或方法的相关资料,需要的朋友可以参考借鉴,下面来一起看看吧。
    2017-08-08
  • pycharm 复制代码出现空格的解决方式

    pycharm 复制代码出现空格的解决方式

    这篇文章主要介绍了pycharm 复制代码出现空格的解决方式,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
    2021-01-01
  • pycharm2020.2 配置使用的方法详解

    pycharm2020.2 配置使用的方法详解

    这篇文章主要介绍了pycharm2020.2 配置使用的方法,本文通过图文并茂的形式给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
    2020-09-09

最新评论