ckblt 发表于 2022-1-26 16:13:41

【Python】数学函数图像

本帖最后由 ckblt 于 2022-4-10 14:38 编辑

今天我做了个 Python 的数学函数图像,
用 turtle 模块来展示。{:10_256:}

你可以在“y = m.tan(x)# 你的函数!”的地方把 y 改一改,
可以呈现出各种各样的函数图像!{:10_298:}

感谢 Minecraft程序猿 提出的建议!

注:显示出来的函数图像仅供参考!

import turtle as t
import math as m
from typing import Union


precision = 0.02# 图像精度
dcm_precision = 5# 小数精度
size = 20# 数值大小
zoom = 50# 缩放大小
show_guides = True# 是否显示参考线

# 感谢 Minecraft程序猿 大佬提出的建议!
t.speed(0)
t.delay(0)
t.tracer(100)

if show_guides:
    # 绘制 x 坐标
    t.pu()
    t.goto(-size / 2 * zoom, 0)
    t.pd()

    for i in range(size):
      t.color("#000")
      t.fd(zoom)
      t.color("#ddd")
      t.seth(90)
      t.fd(zoom / 2 * size)
      t.bk(zoom * size)
      t.fd(zoom / 2 * size)
      t.seth(0)

    # 绘制 y 坐标
    t.pu()
    t.goto(0, -size / 2 * zoom)
    t.pd()
    t.seth(90)

    for i in range(size):
      t.color("#000")
      t.fd(zoom)
      if t.pos() != 0:
            t.color("#ddd")
            t.seth(0)
            t.fd(zoom / 2 * size)
            t.bk(zoom * size)
            t.fd(zoom / 2 * size)
            t.seth(90)

    # 在 (0, 0) 画个红点
    t.pu()
    t.home()
    t.dot(5, "#f00")


t.pu()
t.color("#00f")

for i in range(round(size / precision)):
    x = round(i * precision - size / 2, dcm_precision)
    y = 0
    try:
      y = m.tan(x)# 你的函数!
      y = round(y, dcm_precision)
    except ZeroDivisionError:
      t.pu()
      continue
    except ValueError:
      t.pu()
      continue
    except TypeError:
      t.pu()
      continue
    except OverflowError:
      t.pu()
      continue

    if isinstance(y, Union) and i != 1 and -size < y < size:
      # print(str(x) + "\t" + str(y))
      t.goto(round(x * zoom), round(y * zoom))
      t.pd()
    else:
      t.pu()


t.ht()
t.done()

有问题的话可以来回复我哦!{:10_279:}

Passepartout 发表于 2022-1-27 11:31:53

{:5_108:}

hornwong 发表于 2022-1-27 18:16:33

{:5_95:}

Minecraft程序猿 发表于 2022-4-8 18:23:05

我也做过这种...

Minecraft程序猿 发表于 2022-4-10 11:44:07

其实速度speed应该设为0,然后delay也可以调一下,0即可,最重要的是tracer(控制刷新率什么的),这个有2个参数,其中一个可以设得高一点,这样会快些

一繁之星 发表于 2022-11-3 14:53:48

我直接复制代码怎么也是不能运行?
页: [1]
查看完整版本: 【Python】数学函数图像