[C++] Math/Physics Program
I was just thinking that it would be interesting to make a program that will use different aspects of physics to apply changes to objects. For instance a ball falling from X height weighing Y pounds will take Z seconds to hit the ground. I know most of the physics of it but my C++ skills arent good enough yet to make the ball on the screen and change its coordinates, etc.
I also want to do a simler math program that will do the basic functions and have sin, cos, tan, and also be able to perform some more complicated tasks. To keep that within most peoples reach I thought it should be all in cmd with a looping menu.
If your interested in any of these ideas, even if you want to add/take away/ or skew them a bit. Post a reply here. Thanks!
Re: [C++] Math/Physics Program
Quote:
Originally posted by Steve_F
I was just thinking that it would be interesting to make a program that will use different aspects of physics to apply changes to objects. For instance a ball falling from X height weighing Y pounds will take Z seconds to hit the ground. I know most of the physics of it but my C++ skills arent good enough yet to make the ball on the screen and change its coordinates, etc.
I also want to do a simler math program that will do the basic functions and have sin, cos, tan, and also be able to perform some more complicated tasks. To keep that within most peoples reach I thought it should be all in cmd with a looping menu.
If your interested in any of these ideas, even if you want to add/take away/ or skew them a bit. Post a reply here. Thanks!
Why not make a library instead of having to deal with the graphics yourself. Then your client's would have to do the graphics themselves. All you qwould have to concentrate on is the math behind gravity etc.
Re: [C++] Math/Physics Program
Quote:
Originally posted by Steve_F
I was just thinking that it would be interesting to make a program that will use different aspects of physics to apply changes to objects. For instance a ball falling from X height weighing Y pounds will take Z seconds to hit the ground. I know most of the physics of it but my C++ skills arent good enough yet to make the ball on the screen and change its coordinates, etc.
I also want to do a simler math program that will do the basic functions and have sin, cos, tan, and also be able to perform some more complicated tasks. To keep that within most peoples reach I thought it should be all in cmd with a looping menu.
If your interested in any of these ideas, even if you want to add/take away/ or skew them a bit. Post a reply here. Thanks!
Can the ball bounce if it weighs light enough? What material is the ball made of? You should add those too if you ever get it to work ;)