问题描述
我正在尝试改编 Apple 提供的示例,以便以编程方式在直线上绘制星星,代码如下:
I'm trying to adapt an example provided by Apple in order to programmatically draw stars in line, the code is the following:
上面的代码画了一个完美的星星,但是 1. 倒置显示 2. 是黑色的,没有边框.我想要实现的是在同一条线上以给定的样式绘制许多星星.我知道我实际上在同一位置绘制了 5 次相同的路径,并且我必须以某种方式垂直翻转上下文,但经过几次测试后我放弃了!(我缺乏必要的数学和几何技能:P)...你能帮帮我吗?
The code above draws a perfect star, but is 1. displayed upside down 2. is black and without border. What I want to achive is to draw many stars on the same line and with the given style. I understand that I'm actually drawing the same path 5 times in the same position and that I have somehow to flip the context vertically, but after several tests I gave up! (I lack the necessary math and geometry skills :P)... could you please help me?
更新:
好的,感谢 CocoaFu,这是我的重构和工作绘图实用程序:
Ok, thanks to CocoaFu, this is my refactored and working draw utility:
推荐答案
这是在水平线上绘制 3 颗星的代码,虽然不漂亮,但可能会有所帮助:
Here is code that will draw 3 stars in a horizontal line, it's is not pretty but it may help:
这篇关于如何使用 Quartz Core 绘制星星?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!