Выяснить геометрическую трансформацию
Contents
[
Hide
]
Выяснить геометрическую трансформацию
Aspose.3D for .NET позволяет выставить геометрическое преобразование сцены 3D. Вы можете оценить глобальную трансформацию, используя метод EvaluateGlobalTransform
. Следующий фрагмент кода показывает, как раскрыть геометрическое преобразование.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-3d/Aspose.3D-for-.NET | |
// Initialize node | |
var n = new Node(); | |
// Get Geometric Translation | |
n.Transform.GeometricTranslation = new Vector3(10, 0, 0); | |
// The first Console.WriteLine will output the transform matrix that includes the geometric transformation | |
// while the second one will not. | |
Console.WriteLine(n.EvaluateGlobalTransform(true)); | |
Console.WriteLine(n.EvaluateGlobalTransform(false)); |