Forum: C++ Aug 11th, 2009 |
| Replies: 2 Views: 269 Hi, I am pretty new to C++ but have lots of experience in java/c# and know the basics (classes/structures/pointers etc) but am having some problems linking to external source libraries.
I am... |
Forum: C# Apr 29th, 2009 |
| Replies: 2 Views: 221 When you call the method you will get the implementation defined in the parent class carried out. |
Forum: C# Apr 29th, 2009 |
| Replies: 8 Views: 422 Ok so you want to hide the parent method Add and instead offer a method called Aggungi which does the same thing?
You can't really do that with object orientated programming languages. If a... |
Forum: C# Apr 28th, 2009 |
| Replies: 1 Views: 761 Well I've eventually worked out the following (after talking to a friend of mine), It does a good job at flying from any fixed point to the target using appropriate accelleration/deceleration and is... |
Forum: C# Apr 27th, 2009 |
| Replies: 1 Views: 761 Hi, I am writing a game in which an object at a PointF travelling at a current velocity (Vector2) is trying to reach a destination PointF (which can change between movement steps)
At each step of... |