[C# Helper]
Index Books FAQ Contact About Rod
[Beginning Database Design Solutions, Second Edition]

[Beginning Software Engineering, Second Edition]

[Essential Algorithms, Second Edition]

[The Modern C# Challenge]

[WPF 3d, Three-Dimensional Graphics with WPF and C#]

[The C# Helper Top 100]

[Interview Puzzles Dissected]

[C# 24-Hour Trainer]

[C# 5.0 Programmer's Reference]

[MCSD Certification Toolkit (Exam 70-483): Programming in C#]

Title: Make a 3D cube with pictures on its sides with XAML and C#

example

This example extands the previous one Rotate a 3D cube using XAML and C# to draw a 3D cube with pictures on its sides. As I mention in the previous post, the GeometryModel3D object that defines the cube can display only a single material. There are two basic approaches for displaying a different image on each side of the cube.

First, you can make one big image that contains the six images you want to use for the sides. Then when you define each side's triangles, you set their texture coordinates so they each display the appropriate part of the big image.

The second approach is to make a separate GeometryModel3D object for each side.

The first approach is particularly common for game and other high-performance 3D applications because it is more efficient for the graphics hardware to display many triangles that use the same texture than to display many separate objects that use different textures.

However, this program was supposed to make it easy to display cubes with different pictures so, to make changing the pictures as easy as possible, I decided to use a separate texture and GeometryModel3D for each side.

The following code shows how the program defines the cube's top face.

<!-- Top --> <GeometryModel3D> <GeometryModel3D.Geometry> <MeshGeometry3D Positions = "-1,1,1 1,1,1 1,1,-1 -1,1,-1" TriangleIndices = "0 1 2 2,3,0" TextureCoordinates="0,1 1,1 1,0 0,0" /> </GeometryModel3D.Geometry> <GeometryModel3D.Material> <DiffuseMaterial> <DiffuseMaterial.Brush> <ImageBrush ImageSource="Top.png"/> </DiffuseMaterial.Brush> </DiffuseMaterial> </GeometryModel3D.Material> </GeometryModel3D>

The difference between this code and the code in the previous example is that this object's material uses an image file to define its brush. The cube's other faces are similar.

(This example has two other useful features: the ability to respond to menu commands and the ability to save the cube's image into a file. I'll explain them in later posts.)

Download the example to experiment with it and to see additional details.

© 2009-2023 Rocky Mountain Computer Consulting, Inc. All rights reserved.