by Robb » Mon Apr 18, 2011 3:06 pm
I'm looking for a time-consuming project, as I won't be taking any summer programming courses, and only have Calculus I and English 102 to look forward to, maybe I'll start going ahead from what I learned this semester a few chapters in the book, and see if that's enough to get me started in openGL or something fun.
Started to look online at some openGL source, and it looks like I'd have to study some more OOP concepts in C++ before moving into it.
Back on topic, I looked around online, and found tools to just pretty much build a Linux distribution and call it your own, after selecting which packages and repositories you would like to have installed, along with your window environment, so I kind of ditched the whole distribution idea for now, as it'd be easier to just make a custom distribution using the automated online tools, and a whole lot less time consuming.
- Code: Select all
root = ( -b + sqrt(pow(b, 2) - (4 * a * c) ) ) / (2 * a);
return root;