Click here to Skip to main content
15,881,863 members
Articles / Multimedia / DirectX

Managed DirectX Tutorials: Part 1 - Setting Up DirectX

Rate me:
Please Sign up or sign in to vote.
2.14/5 (16 votes)
3 Feb 20062 min read 88.4K   1.1K   45  
This is the first in a series of tutorials designed to show you how to create a basic terrain engine.
using System.Windows.Forms;
using Microsoft.DirectX;
using Microsoft.DirectX.Direct3D;

namespace DXCore_1
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            this.Size = new System.Drawing.Size(1280, 1024);
            this.Text = "James Gupta: DirectX Tutorial 1.1";
        }

    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
CEO Synap
United Kingdom United Kingdom
Founder & CEO of Synap, an online education platform that uses machine learning to help people learn more in less time.

Software developer, main languages currently are Objective-C, MySQL and Javascript, though I got started on C++, C# and PHP.

Comments and Discussions