El 14-04-2014, a las 8:21, Juraj Kubelka <juraj.kube...@gmail.com> escribió:
OK, now I can draw ellipse with just one arc: -=-=-=- canvas createPath: [ :builder | builder absolute; moveTo: 0.5 @ 0; arcCenterX: 0 centerY: 0 radius: 0.5 startAngle: 0 endAngle: Float twoPi -=-=-=- Why is this method in private protocol? Why I should not use it? Why I have to use “moveTo:”? In C-example they do not use it. But I have to, otherwise there is an extra line on the canvas: ![]() Well, I see in AthensCairoPathBuilder>>createPath:, there is call of "self moveToX: 0 Y: 0.”. If I remove it, I do not have to write “moveTo: 0.5@0”. So, I understand why I have to write it in my code. The question is what is the purpose of "self moveToX: 0 Y: 0.”? I guess it simplify some situations, am I right? Which one? There is actual Athens example: -=-=-=- AthensSceneView new scene: [ :can | | path | path := can createPath: [ :builder | builder absolute; moveTo: 0.5 @ 0; arcCenterX: 0 centerY: 0 radius: 0.5 startAngle: 0 endAngle: Float twoPi ]. can pathTransform restoreAfter: [ can pathTransform scaleBy: 200 @ 50. (can setStrokePaint: Color red) width: 0.1. can drawShape: path. ]. ] ; openInWindow -=-=-=- Thank you, Juraj
|
- [Pharo-users] Athens and ellipse drawing Juraj Kubelka
- Re: [Pharo-users] Athens and ellipse drawing Igor Stasenko
- Re: [Pharo-users] Athens and ellipse drawing Juraj Kubelka
- Re: [Pharo-users] Athens and ellipse drawing Igor Stasenko
- Re: [Pharo-users] Athens and ellipse draw... Juraj Kubelka
- Re: [Pharo-users] Athens and ellipse draw... Juraj Kubelka
- Re: [Pharo-users] Athens and ellipse... Pharo4Stef
- Re: [Pharo-users] Athens and ell... Juraj Kubelka
- Re: [Pharo-users] Athens and... Juraj Kubelka
- Re: [Pharo-users] Athens and... Igor Stasenko
- Re: [Pharo-users] Athens and... Igor Stasenko
- Re: [Pharo-users] Athens and... Henrik Johansen
- Re: [Pharo-users] Athens and... Igor Stasenko
- Re: [Pharo-users] Athens and... Henrik Johansen
- Re: [Pharo-users] Athens and... Nicolai Hess
- Re: [Pharo-users] Athens and... Juraj Kubelka
- Re: [Pharo-users] Athens and... Nicolai Hess
- Re: [Pharo-users] Athens and... stepharo