我想镜像我的画。
我认为我需要为此镜像我的 Matrix3D……但我不知道如何做到这一点。
我试过这样:
var transformation = sceneCamera.TransformationMatrix;
var invertedTransformation = transformation;
invertedTransformation.Invert();
var trans = Transform3D.Identity.Value * transformation * invertedTransformation;
但这不起作用。
正如您在图像中看到的,必须镜像报告中的绘图。
提前致谢!