PHP GD 雪花分形
How can you make a Koch Snowflake Fractal using php gd so that it comes out like this...
Is it possible? Is there another resource I can use?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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
您可以使用 imageline 创建图像并在其上绘制线条。
另一种可能性是使用 SVG。由于 SVG 基本上是 XML 文档,因此您可以通过简单地回显一些 XML 来制作 SVG 图像。
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.