本文整理汇总了C#中System.Windows.Media.Media3D.Matrix3D.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# Matrix3D.ToString方法的具体用法?C# Matrix3D.ToString怎么用?C# Matrix3D.ToString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Windows.Media.Media3D.Matrix3D
的用法示例。
在下文中一共展示了Matrix3D.ToString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ShowVars
// Displays the values of the variables
public void ShowVars()
{
Point4D p1 = new Point4D(10, 5, 1, 4);
Point4D p2 = new Point4D(15, 40, 60, 75);
Matrix3D m1 = new Matrix3D(10,10,10,0,20,20,20,0,30,30,30,0,5,10,15,1);
// Displaying values in Text objects
txtPoint1.Text = p1.ToString();
txtPoint2.Text = p2.ToString();
txtMatrix1.Text = m1.ToString();
}
示例2: ShowVars
// Displays the values of the variables
public void ShowVars()
{
Point3D p1 = new Point3D(10, 5, 1);
Point3D p2 = new Point3D(15, 40, 60);
Vector3D v1 = new Vector3D(20, 30, 40);
Vector3D v2 = new Vector3D(45, 70, 80);
Matrix3D m1 = new Matrix3D(10,10,10,0,20,20,20,0,30,30,30,0,5,10,15,1);
// Displaying values in Text objects
txtPoint1.Text = p1.ToString();
txtPoint2.Text = p2.ToString();
txtVector1.Text = v1.ToString();
txtVector2.Text = v2.ToString();
txtMatrix1.Text = m1.ToString();
}