2017-01-21 258 views
0

我想得出這樣一個三角形恰好 enter image description here如何繪製一個帶有圓角半徑的三角形?

有人能指導我如何做到這一點,因爲我嘗試了很多沒有成功?

我最糟糕的情況是使用圖像,但我不想這樣做。

非常感謝!

+0

你可以用小的代碼演示? –

+0

http://stackoverflow.com/questions/24771828/algorithm-for-creating-rounded-corners-in-a-polygon – dxb

回答

1

也許你應該試試這個:

let trianglePath = UIBezierPath() 
trianglePath.lineJoinStyle = .round 
trianglePath.lineWidth = 25 
trianglePath.move(to: CGPoint(x: 5.0, y: 10.0)) 
trianglePath.addLine(to: CGPoint(x: 130, y: 280.0)) 
trianglePath.addLine(to: CGPoint(x: 265.0, y: 10.0)) 
trianglePath.close() 

這就給了你這個操場: enter image description here

+0

也許我錯過了一些東西,但我如何應用顏色?我跑步時無法看到任何結果。謝謝! –