xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Matrix3D Transformations" Height="450" Width="300">
//File:Window.xaml.cs
using System;
using System.Windows;
using System.Windows.Media;
using System.Windows.Media.Media3D;
namespace WpfApplication1
{
public partial class Matrix3DTransforms : Window
{
public Matrix3DTransforms()
{
InitializeComponent();
Matrix3D M = new Matrix3D(1, 2, 3, 4,
2, 1, 0, 0,
0, 0, 1, 0,
1, 2, 3, 1);
tbOriginal.Text = "(" + M.ToString() + ")";
//Translation:
M.TranslatePrepend(new Vector3D(100, 150, 200));
tbResult.Text = "(" + M.ToString() + ")";
}
}
}