User Piku - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T05:13:54Zhttp://stackoverflow.com/feeds/user/18854http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1732376/is-nesting-namespaces-an-overkill1Is nesting namespaces an overkill?Piku2009-11-13T22:45:29Z2009-11-14T06:40:22Z
<p>I'm writing a C++ program that has a large number of classes. In my head I can visualise them as distinct collections. For example there's a collection of classes for reading and storing config data, and another collection for drawing a user interface with various widgets.</p>
<p>Each of those collections could be neatly stored inside separate namespaces, which seems sensible. The config part has a "screen" class, and the GUI part also has a "screen" class, but they are different to each other. I could rename one "gui_screen" and the other "config_screen", but that's the point of a namespace isn't it? To remove these prefixes we invent to separate things.</p>
<p>Part of me then thinks it'd be tidy to store those namespaces inside one main one so that none of my code can interfere with the namespaces of anything else. And I suppose it might also make the code more readable too.</p>
<p>Or am I just making overly complex hierarchies of data for no reason at all?</p>
http://stackoverflow.com/questions/139537/how-do-i-upgrade-from-drupal-5-to-61How do I upgrade from Drupal 5 to 6?Piku2008-09-26T13:34:24Z2009-08-29T03:46:27Z
<p>I'm running Drupal 5 on my website and want to upgrade to V6. I've not got any obscure or unsupported modules running.</p>
<p>What do I do though? I can't seem to find any step-by-step upgrade methods.</p>
<p>Do I just have to overwrite all the files and then re-run the installer again?</p>
http://stackoverflow.com/questions/1243614/how-do-i-calculate-the-normal-vector-of-a-line-segment3How do I calculate the normal vector of a line segment?Piku2009-08-07T08:35:36Z2009-08-10T00:57:50Z
<p>Suppose I have a line segment going from (x1,y1) to (x2,y2). How do I calculate the normal vector perpendicular to the line?</p>
<p>I can find lots of stuff about doing this for planes in 3D, but no 2D stuff.</p>
<p>Please go easy on the maths (links to worked examples, diagrams or algorithms are welcome), I'm a programmer more than I'm a mathematician ;)</p>
http://stackoverflow.com/questions/1134434/empty-report-when-using-vs2008-report-wizard-and-stored-procedure/1140078#11400781Answer by Piku for Empty report when using VS2008 report wizard and stored procedurePiku2009-07-16T20:25:19Z2009-07-16T20:25:19Z<p>I fixed this by not using the wizard.</p>
<ol>
<li>Create a new WinForms app</li>
<li>Manually add a DataSet by right-clicking the solution in the Solution Explorer</li>
<li>Manually add a TableAdapter by double-clicking on the DataSet xsd file in the Solution Explorer, then right-clicking the blank area and choosing "Add-Table Adapter..."</li>
<li>Connect to the DB</li>
<li>Choose "Use existing stored procedures"</li>
<li>Assign the required stored procedure and complete the wizard</li>
<li>Manually add a report to the solution</li>
<li>Double-click it, then go to "Data->Show Data Sources"</li>
<li>Drag the required fields onto the report</li>
<li>Put a Microsoft.Reporting.WinForms.ReportViewer onto the main form</li>
<li>Use the pop-out smart tasks triangle to associate the required report</li>
</ol>
<p>You can use the report wizard available under the smart tasks thing on the reportviewer control instead of steps 8 & 9 if you want to create tabular reports, etc.</p>
http://stackoverflow.com/questions/1134434/empty-report-when-using-vs2008-report-wizard-and-stored-procedure0Empty report when using VS2008 report wizard and stored procedurePiku2009-07-15T22:17:48Z2009-07-16T20:25:19Z
<p>I'm using VS2008, writing a C# .NET app. I have an SQL Server 2005 database server with a database which contains several stored procedures. I want to show the stored procedure data in a report.</p>
<p>So, as a test I created a brand new VS2008 C# project based on the "Reporting -> Reports Application" project type.</p>
<p>I went through the wizard, connecting to the database and creating the dataset from the stored procedure I wanted to use. I told the report wizard to create a tabular report and didn't bother grouping the columns.</p>
<p>When I ran the application, the report viewer appeared with "Report 1" in the top, but nothing else. There was only one page.</p>
<p>If I create a whole new application, following the exact same method, but this time choose either a View or a Table from my database, I get a multi-page report with data in it, as you'd expect.</p>
<p>So why isn't the reporting system working with stored procedures, but working fine with tables or views? The stored procedure works if I execute it in SQL Management Studio, and it needs no parameters.</p>
http://stackoverflow.com/questions/110973/zx-spectrum-ay-3-8912-playback-in-xna-game-studio2ZX Spectrum AY-3-8912 playback in XNA Game StudioPiku2008-09-21T13:01:48Z2009-06-28T16:49:40Z
<p>Are there any libraries, pieces of code or suchlike that'll let me play ZX Spectrum .ay files in my XNA Game Studio games?</p>
http://stackoverflow.com/questions/774450/implementing-ms-access-style-relationships-gui0Implementing MS Access style 'relationships' GUIPiku2009-04-21T20:28:27Z2009-05-25T08:43:33Z
<p>I have no idea what the correct name for this UI style is. In MS Access the 'relationships' tool shows the db tables as little movable boxes that can be linked with lines. It's the same with Visio and a few audio apps - boxes that are movable, containing lines of text that can be joined together in a meaningful way.</p>
<p>How could I create a similar thing in .NET using Visual Studio 2008 and C#? I've never created my own controls before.</p>
<p>Here's an image of the sort of thing I mean: <a href="http://www.kexi-project.org/pics/0.1beta3/relation%5Fbeta3.png" rel="nofollow">Click for example</a></p>
http://stackoverflow.com/questions/111348/what-xna-based-3d-terrain-and-physics-libraries-exist3What XNA based 3D terrain and physics libraries exist?Piku2008-09-21T16:23:28Z2009-04-27T15:29:26Z
<p>I'm planning on creating a game that contains a landscape with objects on it. The landscape will be defined using a heightfield, and the objects will move about on top of, and fly over the terrain. If you've ever played the old games <a href="http://en.wikipedia.org/wiki/Marble_Madness" rel="nofollow">Marble Madness</a> and <a href="http://en.wikipedia.org/wiki/Zarch" rel="nofollow">Virus/Zarch</a>, that's the kind of complexity and style I'm trying to create.</p>
<p>I've seen various physics engines on the Internet, and a few tutorials about how to render heightfields as terrain, but they either lack documentation or seem overly complex for what I need.</p>
<p>All I need is a way to draw a heightfield, place 3D objects on it and then make them roll down the hills, or fly around in the sky. I don't mind making my own code to do this, so any relevant tutorials would be good too.</p>
http://stackoverflow.com/questions/110924/xna-game-studio-3d-model-editor-suggestions3XNA Game Studio 3D model editor suggestionsPiku2008-09-21T12:40:06Z2009-04-23T00:48:43Z
<p>I want to create basic low-poly 3D models to use in XNA Game Studio games. What cheap/free tools do people recommend?</p>
<p>And does anyone have any links or snippets of code that show how to load 3D models of some sort into XNA and then draw them on the screen?</p>
http://stackoverflow.com/questions/164621/using-crystal-reports-in-visual-studio-2005-c-net-windows-app2Using Crystal Reports in Visual Studio 2005 (C# .NET Windows App)Piku2008-10-02T21:09:26Z2009-04-19T06:36:02Z
<p>I need to create reports in a C# .NET Windows app. I've got an SQL Server 2005 database, Visual Studio 2005 and am quite OK with creating stored procedures and datasets.</p>
<p>Can someone please point me in the right direction for creating reports? I just can't seem work it out. Some examples would be a good start, or a simple How-to tutorial... anything really that is a bit better explained than the MSDN docs.</p>
<p>I'm using the CrystalDecisions.Windows.Forms.CrystalReportViewer control to display the reports, I presume this is correct.</p>
<p>If I'm about to embark on a long and complex journey, what's the simplest way to create and display reports that can also be printed?</p>
http://stackoverflow.com/questions/572804/c-net-single-user-database-options3C# .NET single-user database optionsPiku2009-02-21T11:03:21Z2009-02-22T01:19:55Z
<p>I'm going to be writing a Windows application using the .NET framework and C#. The application will need to store relational data which will be quieried, joined and processed.</p>
<p>Previously I've done this using SQL Server, but that is a total overkill for the application I am now making.</p>
<p>What's the simplest, easiest way to store relational data in my application? If I was on a Mac, I'd be using SQLite. What's the .NET equivalent?</p>
http://stackoverflow.com/questions/556075/water-simulation-with-a-grid/556123#5561231Answer by Piku for Water simulation with a gridPiku2009-02-17T09:50:40Z2009-02-17T09:50:40Z<p>What type of water are you trying to simulate? Pools of water that ripple, or flowing liquids?</p>
<p>I don't think I've ever seen flowing water ever, except in rendered movies. Rippling water is fairly easy to do, this site usually crops up in this type of question <a href="http://freespace.virgin.net/hugo.elias/graphics/x_water.htm" rel="nofollow">http://freespace.virgin.net/hugo.elias/graphics/x_water.htm</a></p>
http://stackoverflow.com/questions/555924/what-are-the-most-overused-design-examples-provide-better-examples-if-you-have-t/556114#5561141Answer by Piku for What are the most overused design examples? Provide better examples if you have them.Piku2009-02-17T09:45:29Z2009-02-17T09:45:29Z<p>The OO one of having a House object, containing several Window objects and a Door object being too abstract to be useful.</p>
<p>And yeah the vehicle related one isn't so good either.</p>
<p>The question to think here is "what do I want the people reading this to <em>learn</em>?" If you're trying to get people to learn about objects and inheritance, then do it using real examples that make sense.</p>
<p>So a dialog object, containing several button objects and a textbox object is a much more realistic idea and no more complex to understand - everyone has seen a dialog box before. This can then be refined into a generic 'window' object, of which buttons, textboxes and dialogs are subclasses.</p>
<p>This would then conveniently lead onto creating a real, working piece of code, rather than filling the reader's head with abstract theory and then seeing if they can make the mental jump to real world concepts.</p>
http://stackoverflow.com/questions/333997/in-drupal-how-can-i-create-a-front-page-with-a-set-of-menus-as-the-content/336977#3369770Answer by Piku for In Drupal, how can I create a front page with a set of menus as the content?Piku2008-12-03T12:44:15Z2008-12-03T12:44:15Z<p>I managed to recreate the style using the taxonomy, views and panels.</p>
<p>A view was created for a specific taxonomy term, and then this was turned into a block and shown on a panel.</p>
<p>Seems to work quite well.</p>
http://stackoverflow.com/questions/333997/in-drupal-how-can-i-create-a-front-page-with-a-set-of-menus-as-the-content0In Drupal, how can I create a front page with a set of menus as the content?Piku2008-12-02T13:59:00Z2008-12-03T12:44:15Z
<p>This website <a href="http://nationalstrategies.standards.dcsf.gov.uk/" rel="nofollow">http://nationalstrategies.standards.dcsf.gov.uk/</a> appears to be using Drupal, and I like the menu system on the front page, but can't work out how it's been done.</p>
<p>Has anyone any ideas about which Drupal modules might reproduce this look and functionality?</p>
http://stackoverflow.com/questions/253925/what-is-the-correct-way-to-deal-with-procedures-that-take-a-long-time-to-comple0What is the correct way to deal with procedures that take a "long time" to complete?Piku2008-10-31T15:34:27Z2008-12-01T17:17:10Z
<p>I have a Winforms application created in Visual Studio 2005 Pro, it connects to an SQL Server 2005 database using the SqlConnection / SqlCommand / SqlDataAdapter classes to extract data. I have stored procedures in my database to return the data to me.</p>
<p>What is the best way to handle queries that take a "long time" to complete? (i.e long enough that the user starts to think something is wrong). Currently my application locks up until the query is complete, or the query times out. Obviously this is unnacceptable.</p>
<p>I'd at least like a progress meter with a "stop" button on it. The progress meter doesn't even have to do anything useful, being a hint to sit patiently and wait would be enough.</p>
<p>Even better would be a warning that said something like "This will return 140,000 rows of data. Do you want to continue?"</p>
<p>I know this probably requires threads, but how?</p>
http://stackoverflow.com/questions/279349/background-filling-a-datagridview-from-an-sqldataadapter3Background filling a DataGridView from an SqlDataAdapterPiku2008-11-10T22:08:37Z2008-11-11T07:17:46Z
<p>I have a large dataset (over 100,000 records) that I wish to load into a DataGridView. The stored procedure that does this can take 10 seconds or more to complete.</p>
<p>So far I have a BackgroundWorker preventing the UI from locking up, and have implemented a rudimentary 'Please Wait' dialog.</p>
<p>What I'd like to do is somehow populate the DataGridView with results as they get returned from the database somehow. The best way to describe it is how the SQL Server Management Studio does it - when a query runs, rows come back immediately even though the query is still executing. There's also a button to stop the query and keep the rows that have been returned.</p>
<p>How can I do this in my own code?</p>
<p>The DataGridView is only used to display the rows of data, and then the user clicks one to do something else. Nothing gets written back to the database.</p>
http://stackoverflow.com/questions/164621/using-crystal-reports-in-visual-studio-2005-c-net-windows-app/278916#2789161Answer by Piku for Using Crystal Reports in Visual Studio 2005 (C# .NET Windows App)Piku2008-11-10T19:39:06Z2008-11-10T19:39:06Z<p>I have managed to make this work now.</p>
<p><strong>Brief Overview</strong></p>
<p>It works by having a 'data class' which is just a regular C# class containing variables and no code. This is then instantiated and filled with data and then placed inside an ArrayList. The ArrayList is bound to the report viewer, along with the name of the report to load. In the report designer '.Net Objects' are used, rather than communicating with the database.</p>
<p><strong>Explanation</strong></p>
<p>I created a class to hold the data for my report. This class is manually filled by me by manually retrieving data from the database. How you do this doesn't matter, but here's an example:</p>
<pre><code>DataSet ds = GeneratePickingNoteDataSet(id);
foreach (DataRow row in ds.Tables[0].Rows) {
CPickingNoteData pickingNoteData = new CPickingNoteData();
pickingNoteData.delivery_date = (DateTime)row["delivery_date"];
pickingNoteData.cust_po = (int)row["CustomerPONumber"];
pickingNoteData.address = row["CustomerAddress"].ToString();
// ... and so on ...
rptData.Add(pickingNoteData);
}
</code></pre>
<p>The class is then put inside an ArrayList. Each element in the arraylist corresponds to one 'row' in the finished report.</p>
<p>The first element in the list can also hold the report header data, and the last element in the list can hold the report footer data. And because this is an ArrayList, normal Array access can be used to get at them:</p>
<pre><code>((CPickingNoteData)rptData[0]).header_date = DateTime.Now;
((CPickingNoteData)rptData[rptData.Count-1]).footer_serial = GenerateSerialNumber();
</code></pre>
<p>Once you have an arraylist full of data, bind it to your report viewer like this, where 'rptData' is of type 'ArrayList'</p>
<pre><code>ReportDocument reportDoc = new ReportDocument();
reportDoc.Load(reportPath);
reportDoc.SetDataSource(rptData);
crystalReportViewer.ReportSource = reportDoc;
</code></pre>
<p>Now you will need to bind your data class to the report itself. You do this inside the designer:</p>
<ol>
<li>Open the Field Explorer tab (which might be under the 'View' menu), and right-click "Database Fields"</li>
<li>Click on 'Project Data'</li>
<li>Click on '.NET Objects'</li>
<li>Scroll down the list to find your
data class (if it isn't there,
compile your application)</li>
<li>Press '>>' and then OK</li>
<li>You can now drag the class members
onto the report and arrange them as
you want.</li>
</ol>
http://stackoverflow.com/questions/253938/can-i-get-the-rowcount-before-executing-a-stored-procedure4Can I get the rowcount before executing a stored procedure?Piku2008-10-31T15:38:11Z2008-10-31T19:49:31Z
<p>I have some complex stored procedures that may return many thousands of rows, and take a long time to complete.</p>
<p>Is there any way to find out how many rows are going to be returned before the query executes and fetches the data?</p>
<p>This is with Visual Studio 2005, a Winforms application and SQL Server 2005.</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/225399#2253991Answer by Piku for What is the strangest programming language you have used?Piku2008-10-22T11:38:34Z2008-10-22T11:38:34Z<p>I wrote an entire simulation of a train using the joyless mind-sapping thing known as <a href="http://www.iclinks.com/Products/IntelligentRTU/Sdk.html#ISaGRAF" rel="nofollow">ISaGRAF</a> which is an "industry standard" system for creating electronic simulations.</p>
<p>And you can either write hardcore chip logic using something vaguely like Pascal, or with little drag and drop GUI diagrams that look very similar to flowcharts.</p>
<p>I'm sure it's not bad for a small system. But an entire train consisting of ten carriages and their electronics?</p>
<p>This was where I learnt that hardware designers think very differently to software people.</p>
http://stackoverflow.com/questions/164621/using-crystal-reports-in-visual-studio-2005-c-net-windows-app/198738#1987381Answer by Piku for Using Crystal Reports in Visual Studio 2005 (C# .NET Windows App)Piku2008-10-13T19:27:51Z2008-10-13T19:27:51Z<p>I found the following websites solved my problems. Included here for future reference.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms227490(VS.80).aspx" rel="nofollow">CrystalReportViewer Object Model Tutorials</a> for the tutorial on how to make the whole thing work. And also <a href="http://msdn.microsoft.com/en-us/library/ms227453(VS.80).aspx" rel="nofollow">Setting up a project to use Crystal Reports</a>
and specifically <a href="http://msdn.microsoft.com/en-us/library/ms227525(VS.80).aspx" rel="nofollow">preparing the form</a> and <a href="http://msdn.microsoft.com/en-us/library/ms227507(VS.80).aspx" rel="nofollow">adding the control</a></p>
http://stackoverflow.com/questions/70124/how-do-you-find-your-way-around-a-new-codebase/173971#1739710Answer by Piku for How do you find your way around a new codebasePiku2008-10-06T11:39:42Z2008-10-06T11:39:42Z<p>I need to see the overall structure before I start digging into the mechanics of the code. So printouts and whiteboards are useful to me. Your code might create a new instance of 'WidgetWibble' in the 'Foobar()' function... but what's that mean?</p>
<p>Then I start with the UI and work out how it works.</p>
<p>I'm quite good at looking at code and asking difficult questions that end in "why?", which provoke responses of "err... well it was 3am and the code was due for release the next morning".</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/173956#1739560Answer by Piku for What's Your Motto As A Developer/Programmer?Piku2008-10-06T11:35:23Z2008-10-06T11:35:23Z<p>I have several</p>
<p>1 - Reinventing the wheel is boring - and who wants an oval wheel that falls off every few minutes? Someone else has done this before.</p>
<p>2 - Make something work now, make it work better, later.</p>
<p>3 - Let's just do some Googling...</p>
http://stackoverflow.com/questions/164621/using-crystal-reports-in-visual-studio-2005-c-net-windows-app/164837#1648370Answer by Piku for Using Crystal Reports in Visual Studio 2005 (C# .NET Windows App)Piku2008-10-02T22:11:45Z2008-10-02T22:11:45Z<p>SRSS looks interesting, but do I have to install IIS to use it? Can I embed some sort of viewer control into my application instead?</p>
<p>I'm writing a stock control system, and the reports are going to be used to generate delivery notes and invoices once the user has gone through a series of dialogs, building up their order. So having them need to start up a browser to look at the report wouldn't work too well.</p>
http://stackoverflow.com/questions/139568/creating-an-online-catalogue-using-drupal-what-are-the-best-modules-techniques2Creating an online catalogue using Drupal, what are the best modules/techniques?Piku2008-09-26T13:41:47Z2008-09-30T04:20:26Z
<p>I have a large collection of retro games consoles and computers, I want to create some sort of catalogue to keep track of them using Drupal. I could do it as a series of pages in Drupal, but would rather have some sort of more structured method.</p>
<p>It'd be great if I could somehow define a record consisting of certain fields (manufacturer, model, serial number, etc) and have a form to fill in, and then have the display part automatically taken care of.</p>
<p>From looking at various Drupal modules I get the feeling I can do this, but I can't work out what modules to use. I got somewhat lost looking at the CCK module.</p>
http://stackoverflow.com/questions/123209/best-book-to-learn-the-processing-programming-language/128913#1289131Answer by Piku for Best book to learn the Processing programming language?Piku2008-09-24T18:27:34Z2008-09-24T18:27:34Z<p>I own the second one with the circles on. It's a good book with a focus being on making code work, rather than trailing off with pages of theory. It's really thick and full of code samples split into handy categories.</p>
http://stackoverflow.com/questions/102714/what-was-your-first-home-computer/110951#1109510Answer by Piku for What was your first home computer?Piku2008-09-21T12:51:42Z2008-09-21T12:51:42Z<p>Acorn Electron. After developing a nasty obsession with taking electronic things apart and trying to "build" computers out of wire and cardboard boxes, my parents finally took the hint one Christmas back in 1986 or so.</p>
<p>I had quite a lot of fun just messing about on it, and then one day I discovered BASIC.</p>
http://stackoverflow.com/questions/101362/how-do-you-generate-passwords/101972#1019720Answer by Piku for How do you generate passwords?Piku2008-09-19T13:51:56Z2008-09-19T13:51:56Z<p>For websites it's a 'secret' word combined with something memorable for the site I'm registering with.</p>
<p>For everything else I use a random generated password.</p>
http://stackoverflow.com/questions/101774/what-is-your-bug-task-tracking-tool/101944#1019440Answer by Piku for What is your bug/task tracking tool?Piku2008-09-19T13:47:03Z2008-09-19T13:47:03Z<p>I also use Google Docs for small projects I'm involved in. We've also found Google Notebook to be quite efficient. They may not have the scheduling features large groups need, but for sending snippets of code or quick design docs it works really well.</p>
http://stackoverflow.com/questions/1732376/is-nesting-namespaces-an-overkill/1732420#1732420Comment by Piku on Is nesting namespaces an overkill?Piku2009-11-13T23:33:17Z2009-11-13T23:33:17ZExcellent. This is like the com.microsoft.foo stuff in .NET and similar in Java, isn't it.http://stackoverflow.com/questions/1696896/how-to-check-whether-the-number-ends-with-9-or-not-in-numbers-1to-100Comment by Piku on how to check whether the number ends with 9 or not in numbers 1to 100Piku2009-11-08T17:18:20Z2009-11-08T17:18:20ZIt's not even very good homework, you could brute-force it with a loop and ten if statements.http://stackoverflow.com/questions/1243614/how-do-i-calculate-the-normal-vector-of-a-line-segment/1243676#1243676Comment by Piku on How do I calculate the normal vector of a line segment?Piku2009-08-07T13:10:28Z2009-08-07T13:10:28ZIt's quite subtle and took me a while to realise normal.x = -dy and normal.y = dx. I had them the other way around because it looked like a typo assigning the x part to the y value...http://stackoverflow.com/questions/1134434/empty-report-when-using-vs2008-report-wizard-and-stored-procedure/1134525#1134525Comment by Piku on Empty report when using VS2008 report wizard and stored procedurePiku2009-07-16T12:12:17Z2009-07-16T12:12:17ZThe wizard knows what fields should be in the stored procedure, because it puts them on the report template for me.
Also if I expand the dataset in the side panel of VS2008, I can see the live data in it.http://stackoverflow.com/questions/774450/implementing-ms-access-style-relationships-guiComment by Piku on Implementing MS Access style 'relationships' GUIPiku2009-04-24T02:10:19Z2009-04-24T02:10:19ZRight, so how do I make one of those types of diagram in my own application?
How do I draw boxes, lines and put text in them, using code?http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/312203#312203Comment by Piku on What is the best comment in source code you have ever encountered?Piku2009-04-19T21:46:07Z2009-04-19T21:46:07ZWhen doing my A Level computing course we had a book, in the book the glossary contained two entries:
Endless Loop - See 'Loop, Endless'
...
Loop, Endless - See 'Endless Loop'
http://stackoverflow.com/questions/139537/how-do-i-upgrade-from-drupal-5-to-6/139554#139554Comment by Piku on How do I upgrade from Drupal 5 to 6?Piku2008-09-26T13:45:50Z2008-09-26T13:45:50ZVideo tutorials are excellent when done correctly. Like the Microsoft XNA ones, it really does make more sense when someone says "click on this part and type in this".
That's for learning a programming language though. For a mechanical thing like upgrading software a list is much better.http://stackoverflow.com/questions/111348/what-xna-based-3d-terrain-and-physics-libraries-exist/111420#111420Comment by Piku on What XNA based 3D terrain and physics libraries exist?Piku2008-09-22T21:49:56Z2008-09-22T21:49:56ZThat's quite useful. So how would I make gravity, etc work so that the tank rolls down the hills?