PHP GD 雪花分形

发布于 2024-09-15 16:08:02 字数 310 浏览 4 评论 0原文

如何使用 php gd 制作 科赫雪花分形它像这样...


alt text

alt text


有可能吗?我可以使用其他资源吗?

How can you make a Koch Snowflake Fractal using php gd so that it comes out like this...


alt text

alt text


Is it possible? Is there another resource I can use?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

看春风乍起 2024-09-22 16:08:02

imageline、imagerotate、imagefill 和 imagefilledpolygon 是您的朋友。它们都在 php 手册中。就数学而言,您可以将其添加到您的参考文献中: http://www.fractaldesign.net /algor.htm

imageline, imagerotate, imagefill, and imagefilledpolygon are your friends. they're all in the php manual. as far as the math goes, you can add this to your references: http://www.fractaldesign.net/algor.htm

初与友歌 2024-09-22 16:08:02

您可以使用 imageline 创建图像并在其上绘制线条。

另一种可能性是使用 SVG。由于 SVG 基本上是 XML 文档,因此您可以通过简单地回显一些 XML 来制作 SVG 图像。

echo '<line x1="'.$startx.'" y1="'.$starty.'" x2="300" y2="300" />';

You can create an image and draw lines on it using imageline.

Another posibility is using SVG. Since SVG are basically XML documents, you can make an SVG image by simply echo'ing some XML.

echo '<line x1="'.$startx.'" y1="'.$starty.'" x2="300" y2="300" />';
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文