Is there a way i can create 3D graphics in c#? is there an API out there, built into c# or would i have to make my own? here is how i can create a cube

void drawcube(Pen mypen, Rectangle rect1, int size){
            Rectangle rect2 = new Rectangle(rect1.X + size, rect1.Y + size,
                                            rect1.Width, rect1.Height);
            G.DrawRectangle(mypen, rect1);
            G.DrawRectangle(mypen, rect2);

            G.DrawLine (mypen, new Point(rect1.Right, rect1.Y),
                        new Point(rect2.Right, rect2.Y) );
            G.DrawLine( mypen, new Point(rect1.X, rect1.Bottom), new Point(rect2.X, rect2.Bottom) );                                                                   

            G.DrawLine(mypen, rect1.Location, rect2.Location);
            G.DrawLine(mypen, new Point(rect1.Right, rect1.Bottom), new Point(rect2.Right, rect2.Bottom));
            }

Recommended Answers

All 2 Replies

You'll want to take a look at XNA

There is always this book by Petzold
It uses WPF(Windows Presentation Foundation)
But believe me, you got to have a strong heart, to grasp what quaternions really are :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.