Search found 4 matches
- Wed Jun 02, 2010 3:41 am
- Forum: General/Off-Topic
- Topic: Official "Hello, World! (I'm new!)" thread
- Replies: 821
- Views: 630479
Re: Official "Hello, World! (I'm new!)" thread
Hey all, Really glad I found the site and project. I'm a 3rd year Computer Science student at UC Davis, been programming since I was twelve. I started making games early on in high school and have made a number of small projects since but nothing on the size that ES seems to be. Look forward to seei...
- Sun May 30, 2010 8:23 pm
- Forum: Programming Discussion
- Topic: SAT Question
- Replies: 9
- Views: 876
Re: SAT Question
SHAZAAM! You never even SEE sin/cos in any calculations whatsoever. Linear algebra (as I see it) is a way of geometrically abstracting trigonometry away from your math. That shit is gross! Totally agree. It make things so much easier to read and understand later on for both you and anyone else that...
- Sun May 30, 2010 8:00 pm
- Forum: General/Off-Topic
- Topic: Effort in Last Year of High School (For College...)
- Replies: 18
- Views: 1764
Re: Effort in Last Year of High School (For College...)
I'm at the end of my junior year at UC Davis as a Computer Science student, having transferred at the beginning of the school year from a local community college. In high school I was too busy with playing and programming games to really care about any of my homework and I wound up with a pretty mis...
- Sun May 30, 2010 1:32 am
- Forum: Programming Discussion
- Topic: Triangulation
- Replies: 2
- Views: 527
Re: Triangulation
I don't have time to look over the whole thing right now, but a couple of things jumped out to me. In the first for loop where you have this... int p1 = i - 1; int p2 = i; int p3 = i + 1; if(p2 > int(poly.size())) p2 -= poly.size(); the expression is never going to be true because of the limits of t...