User savannah - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T02:46:54Zhttp://stackoverflow.com/feeds/user/94317http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/783220#7832203Answer by savannah for What is the best comment in source code you have ever encountered?savannah2009-04-23T19:35:55Z2009-04-23T19:35:55Z<pre><code>//Time log says you've been here for 15 hours GO HOME, your code is hobo
</code></pre>
http://stackoverflow.com/questions/780169/how-do-i-create-collision-detections-for-my-bouncing-balls/780321#7803211Answer by savannah for How do I create collision detections for my bouncing balls?savannah2009-04-23T04:30:17Z2009-04-23T04:30:17Z<p>I think there is somehthing simpler that you guys are missing espeically considering he's using pygame.</p>
<p>Calling the <code>get_rect</code> function can set probably boundraies for the images and <code>Rect</code> that is created, is used for calculating the position of the image and if there are more than one object in the animation, it can be used for detecting collisions. </p>
<p><code>colliderect</code> & <code>rect</code> can be used, problem is i have no idea how you would implement it especially for an unkown number of balls. </p>
<p>Keeping in mind it's python.</p>
http://stackoverflow.com/questions/162815/what-applications-is-python-optimal-for/778604#7786040Answer by savannah for What applications is Python optimal for?savannah2009-04-22T18:42:11Z2009-04-22T18:42:11Z<p>Maya is starting to use python more and more, so tool scripting could be a good field to get into.</p>
http://stackoverflow.com/questions/777265/how-to-describe-your-job-to-a-non-it-guy/777347#7773470Answer by savannah for How to describe your job to a non IT guy?savannah2009-04-22T13:59:41Z2009-04-22T13:59:41Z<p>"I work in IT, basically, I make sure the computers in the building are running smoothly and talking to eachother."</p>
http://stackoverflow.com/questions/777129/python-image-collision-detection/777248#777248Comment by savannah on Python Image Collision Detectionsavannah2009-04-22T15:10:58Z2009-04-22T15:10:58Z ball_boundary = ball.get_rect(center=(100,100))
Calling the get_rect function can set rectangular boundaries for the image. The Rect that is created, theb used for calculating the position of the image. Im assuming that if there is more than one image then this could somehow be used to detect collision. http://stackoverflow.com/questions/777129/python-image-collision-detection/777248#777248Comment by savannah on Python Image Collision Detectionsavannah2009-04-22T13:53:05Z2009-04-22T13:53:05ZThe problem is I have no idea how to differentiate between the balls the way they are created to play off them. I kind of see the logic in this but it's somewhat confusing to understand in C#.