The topdown tag has no wiki summary.
0
votes
1answer
91 views
Box2d AS3 Flash simulating wind on top down view with friction
I am trying to make a top down game where you throw a disc using Box2d. The world has no gravity so the disc can be thrown and just bounces around the stage with the inertia and linear damping that I ...
0
votes
1answer
173 views
Implement a projectile motion and collision detection - response in 2d top down game
There are a lot of examples concerning projectile motions in 2d games.
But, what are the equations for implementing a projectile motion on a 2d top down view game? For example, we want to kick a ...
1
vote
2answers
368 views
Difference between Left Factoring and Left Recursion
What is the difference between Left Factoring and Left Recursion ? I understand that Left factoring is a predictive top down parsing technique. But I get confused when I hear these two terms.
0
votes
0answers
33 views
Bottum-up or Top-Down deletion implementation of Red Black Trees
What is the easiest way to implement RBT - Bottom-up or Top-Down in your opinion? If I implemented insertion in a top-down manner, do you think it's best to implement deletion in the same way?
0
votes
0answers
82 views
Problems with loading a tileset Javascript html5 top down game
Hi guys im building a top-down tile based game.
At first i was simply loading tiles individually into an array, but its got to the point where i think using a sprite sheet might be better. So i ...
1
vote
1answer
282 views
How do I align bullets with a gun?
I have an image of my player (top-down 2D). The player rotates to face the camera, and holds a gun. When bullets are created, they are created at the player's x and y. This works when the player is ...
0
votes
2answers
168 views
Local Variable NullPointerException
I'm getting a nullpointerexception when I click on the signup button on the Login class it gives that error. I've tried to tinker around with the local and global variables and nothing seems to fix ...
0
votes
1answer
264 views
Entity Framework, Repository, Data Layer, 3 Layer
I'm trying to visualize a 3-layer design with Entity Framework.
If I have a Repository on top of the EF Context, are they both components of the Data Layer?
Or is the Repository the Data Layer ...
8
votes
5answers
421 views
Designing APIs in Java with top-down approach - Is writing up the Javadoc the best starting point?
Whenever I have the need to design an API in Java, I normally start off by opening up my IDE, and creating the packages, classes and interfaces. The method implementations are all dummy, but the ...
0
votes
1answer
2k views
Top Down Vs Bottom Up - Normalisation
Could someone describe for me the differences between top down normalisation and bottom up normalisation with regards to databases, namely relational databases.
1
vote
1answer
237 views
Topdown approch for abcpdf doc object
the default (x,y) axis for doc object in ABCpdf starts at bottom-left corner. is there any way to make it top-left corner.?
4
votes
2answers
1k views
Advanced RPG-Style Movement in XNA
I am making a top down, rpg-type game - similar to Pokemon, but I am stuck at character movement. Basically, what I want to achieve is a smooth tile based movement system for my player and other ...
0
votes
2answers
264 views
Tutorial for Topdown 3D
Well, i'm looking for a good guide to program Topdown 3D in C++. Where i can find a good one?
Thanks.
0
votes
1answer
812 views
IBM Eclipse WSDL Editor: How do I include an external wsdl/schema?
I am trying to create Web Services from the Top-Down approach. I downloaded Eclipse and am using the WSDL gui editor in it to build my WSDL files.
I am splitting up my Services based on "modules". ...
0
votes
1answer
321 views
EJB webservice hanging during first call in Websphere
I have a top-down EJB Webservice (deployed on Websphere 6.01) that hangs the first time I call it after starting the JVM. If I see the logs, it seems to do everything normal that I expect it to ...
7
votes
1answer
672 views
Grammar: difference between a top down and bottom up? (Example)
This is a follow up question from Grammar: difference between a top down and bottom up?
I understand from that question that:
the grammar itself isn't top-down or bottom-up, the parser is
there ...
4
votes
2answers
929 views
Grammar: difference between a top down and bottom up?
What is the difference between a top down and bottom up grammar? An example would be awesome.
1
vote
2answers
504 views
How to implement a left recursion eliminator?
How can i implement an eliminator for this?
A := AB |
AC |
D |
E ;
0
votes
1answer
1k views
Can some one please provide the practical examples of stubs and drivers?
I need some practical examples of stubs and drivers with respect to top-down and bottom-up approaches to testing. I don't require code here. Just the scenario based examples.
1
vote
1answer
150 views
BDD Top-Down Approach
I'm new in BDD world and I've been in some difficult trying to get the best from top-down approach, strongly recommended by many people. Considering this what would you recommend as a good start point ...
0
votes
2answers
84 views
how to construct web UI in a top-down way? [closed]
Has anyone done this ?
If so,please share your experience:)
2
votes
4answers
3k views
opengl topdown<->bottomup textures?
When i load an image via FreeImage, the bits are bottom to top.
My GL code expects all images to be topdown. Whats the best way to flip the image when i copy the bits to the texture?
