<div dir="ltr"><div>Would it make sense to achieve the same thing by giving midX and midY setters (they currently only have getters)?</div><div><br></div><div>I&#39;m don&#39;t think I like the idea of tying down any CGRect extensions to a &quot;parent&quot; rect, but saying &quot;rect.midX = parent.midX&quot; is pretty simple &amp; clear.</div><div class="gmail_extra"><br></div><div class="gmail_extra">
Jacob</div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Dec 10, 2015 at 6:17 AM, D. Felipe Torres via swift-evolution <span dir="ltr">&lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><span style="font-size:13px">One of the task that is performed often is center a frame with respect to it&#39;s parent.</span><div style="font-size:13px">The code for this is short and simple:</div><div style="font-size:13px"><br></div><div style="font-size:13px">rect.origin.x = (rect.width-parent.width)/2 // or... </div><div style="font-size:13px">rect.origin.y = (rect.height-parent.height)/2</div><div style="font-size:13px"><br></div><div style="font-size:13px">## Current Problems</div><div style="font-size:13px"><br></div><div style="font-size:13px">- It is very easy to get it wrong and confuse X or Y and their length associations.</div><div style="font-size:13px">- Because this code is often found in a layout method, several other rect variables may be defined in the scope which makes it easier to mistake one variable with another if their names are close (and you are used to autocomplete)</div><div style="font-size:13px">- And finally but most importantly, while the equation here is simple, one must parse it and understand it and is not a very swifty approach.</div><div style="font-size:13px"><br></div><div style="font-size:13px">##Proposed Additions </div><div style="font-size:13px"><br></div><div style="font-size:13px">2 (actually 4) extensions in CGGeometry to CGRect:</div><div style="font-size:13px"><br></div><div style="font-size:13px">extension CGRect {</div><div style="font-size:13px">      public func centerX(parentRect: CGRect) -&gt; CGRect</div><div style="font-size:13px">      public mutating func centerXInPlace(parentRect: CGRect)</div><div style="font-size:13px"><div>      public fun centerY(parentRect: CGRect) -&gt; CGRect</div><div>      public mutating func centerYInPlace(parentRect: CGRect)</div></div><div style="font-size:13px">}</div><div style="font-size:13px"><br></div><div style="font-size:13px">This extension allows very easily (and verbally) center a rect in respect to a parent.</div><div style="font-size:13px"><br></div><div style="font-size:13px">I&#39;m pretty sure there are other pretty useful extensions that can be added to CGGeometry as well but this one I think is basic and pretty important.</div><span class="HOEnZb"><font color="#888888"><div><br></div>-- <br><div><div style="color:rgb(34,34,34)">++++++++++++++++++++++++++</div><div style="color:rgb(34,34,34)">Diego Torres.</div><div style="color:rgb(34,34,34);font-family:arial,sans-serif;font-size:13px">Web: <a href="http://dtorres.me/" target="_blank">dtorres.me</a></div></div>
</font></span></div><span class="HOEnZb"><font color="#888888">
<img src="https://u2002410.ct.sendgrid.net/wf/open?upn=P-2BsYbBZHRBuLDBJaL4DIKDNfkkjpROowTyRAObV11qxI5LM3vsJ0SXACGqem8cD1pS9R2b2vsjP7kseNPr2tDTtL9WDPZ9aN9TBBkTjtUeWQIF8HH3WgYlQi-2B8b2-2FBx6cABQlJDzhWN6RIzqSo56C6IvnvvaFbyTTkJ-2FOeibh4VOIQFjguJR6rhUHX5oHgBpmqUryCxnRvsA1LPWNDeF0Sxi-2FLsKq1LxKy-2FSbY-2FZTj8-3D" alt="" width="1" height="1" border="0" style="min-height:1px!important;width:1px!important;border-width:0!important;margin-top:0!important;margin-bottom:0!important;margin-right:0!important;margin-left:0!important;padding-top:0!important;padding-bottom:0!important;padding-right:0!important;padding-left:0!important">
</font></span><br>_______________________________________________<br>
swift-evolution mailing list<br>
<a href="mailto:swift-evolution@swift.org">swift-evolution@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-evolution" rel="noreferrer" target="_blank">https://lists.swift.org/mailman/listinfo/swift-evolution</a><br>
<br></blockquote></div><br></div></div>