Пример #1
0
        private void GetCameraPlaneOrientationButton_OnClick(object sender, RoutedEventArgs e)
        {
            Vector3D planeNormalVector3D, widthVector3D, heightVector3D;

            _selectedCamera.GetCameraPlaneOrientation(out planeNormalVector3D, out widthVector3D, out heightVector3D);

            MessageBox.Show(string.Format(System.Globalization.CultureInfo.InvariantCulture,
                                          "Calling:\r\nGetCameraPlaneOrientation:\r\n\r\nResult:\r\nplaneNormalVector3D: {0:0.0}\r\nwidthVector3D: {1:0.0}\r\nheightVector3D: {2:0.0}",
                                          planeNormalVector3D,
                                          widthVector3D,
                                          heightVector3D));
        }