当前位置: 首页>>代码示例>>C#>>正文


C# Rotation.TransformForNavigation方法代码示例

本文整理汇总了C#中Rotation.TransformForNavigation方法的典型用法代码示例。如果您正苦于以下问题:C# Rotation.TransformForNavigation方法的具体用法?C# Rotation.TransformForNavigation怎么用?C# Rotation.TransformForNavigation使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Rotation的用法示例。


在下文中一共展示了Rotation.TransformForNavigation方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: UpdateCenterDiff

        /// <summary>
        /// Set centerDiffX, centerDiffY and centerDiffZ.
        /// </summary>
        public void UpdateCenterDiff()
        {
            // For Zerotest
            double minDoubleVal = 0.0000000000000001;

            Rotation rotView = new Rotation();
            rotView.Init(0, 0, 0, -ParameterDict.Current.GetDouble("Transformation.Camera.AngleX"), ParameterDict.Current.GetDouble("Transformation.Camera.AngleY"),
                  ParameterDict.Current.GetDouble("Transformation.Camera.AngleZ"));
            centerDiffX = rotView.TransformForNavigation(new Vec3(1, 0, 0));

            rotView = new Rotation();
            rotView.Init(0, 0, 0, -ParameterDict.Current.GetDouble("Transformation.Camera.AngleX"), ParameterDict.Current.GetDouble("Transformation.Camera.AngleY"),
                  ParameterDict.Current.GetDouble("Transformation.Camera.AngleZ"));
            centerDiffY = rotView.TransformForNavigation(new Vec3(0, -1, 0));

            rotView = new Rotation();
            rotView.Init(0, 0, 0, -ParameterDict.Current.GetDouble("Transformation.Camera.AngleX"), ParameterDict.Current.GetDouble("Transformation.Camera.AngleY"),
                  ParameterDict.Current.GetDouble("Transformation.Camera.AngleZ"));
            centerDiffZ = rotView.TransformForNavigation(new Vec3(0, 0, -1));

            // Set 0-Entries
            if (centerDiffX.X > -minDoubleVal && centerDiffX.X < minDoubleVal)
                centerDiffX.X = 0;
            if (centerDiffX.Y > -minDoubleVal && centerDiffX.Y < minDoubleVal)
                centerDiffX.Y = 0;
            if (centerDiffX.Z > -minDoubleVal && centerDiffX.Z < minDoubleVal)
                centerDiffX.Z = 0;

            if (centerDiffY.X > -minDoubleVal && centerDiffY.X < minDoubleVal)
                centerDiffY.X = 0;
            if (centerDiffY.Y > -minDoubleVal && centerDiffY.Y < minDoubleVal)
                centerDiffY.Y = 0;
            if (centerDiffY.Z > -minDoubleVal && centerDiffY.Z < minDoubleVal)
                centerDiffY.Z = 0;

            if (centerDiffZ.X > -minDoubleVal && centerDiffZ.X < minDoubleVal)
                centerDiffZ.X = 0;
            if (centerDiffZ.Y > -minDoubleVal && centerDiffZ.Y < minDoubleVal)
                centerDiffZ.Y = 0;
            if (centerDiffZ.Z > -minDoubleVal && centerDiffZ.Z < minDoubleVal)
                centerDiffZ.Z = 0;
        }
开发者ID:trafassel,项目名称:Gestaltlupe,代码行数:45,代码来源:NavigateControl.cs

示例2: UpdateCenterDiff

        /// <summary>
        /// Set centerDiffX, centerDiffY and centerDiffZ.
        /// </summary>
        public void UpdateCenterDiff()
        {
            double centerX = ParameterDict.Current.GetDouble("Scene.CenterX");
            double centerY = ParameterDict.Current.GetDouble("Scene.CenterY");
            double centerZ = ParameterDict.Current.GetDouble("Scene.CenterZ");

            //Rotation rotView = null;
            double centerXChange = centerX + 1;
            double centerYChange = centerY + 1;
            double centerZChange = centerZ + 1;

            // For Zerotest
            double minDoubleVal = 0.0000000000000001;

            // This does not work for angle combinations:

            Rotation rotView = new Rotation();
            rotView.Init(0, 0, 0, -ParameterDict.Current.GetDouble("Transformation.Camera.AngleX"), ParameterDict.Current.GetDouble("Transformation.Camera.AngleY"),
                  ParameterDict.Current.GetDouble("Transformation.Camera.AngleZ"));
            centerDiffX = rotView.TransformForNavigation(new Vec3(1, 0, 0));

            rotView = new Rotation();
            rotView.Init(0, 0, 0, -ParameterDict.Current.GetDouble("Transformation.Camera.AngleX"), ParameterDict.Current.GetDouble("Transformation.Camera.AngleY"),
                  ParameterDict.Current.GetDouble("Transformation.Camera.AngleZ"));
            centerDiffY = rotView.TransformForNavigation(new Vec3(0, -1, 0));

            rotView = new Rotation();
            rotView.Init(0, 0, 0, -ParameterDict.Current.GetDouble("Transformation.Camera.AngleX"), ParameterDict.Current.GetDouble("Transformation.Camera.AngleY"),
                  ParameterDict.Current.GetDouble("Transformation.Camera.AngleZ"));
            centerDiffZ = rotView.TransformForNavigation(new Vec3(0, 0, -1));

            // Set 0-Entries
            if (centerDiffX.X > -minDoubleVal && centerDiffX.X < minDoubleVal)
                centerDiffX.X = 0;
            if (centerDiffX.Y > -minDoubleVal && centerDiffX.Y < minDoubleVal)
                centerDiffX.Y = 0;
            if (centerDiffX.Z > -minDoubleVal && centerDiffX.Z < minDoubleVal)
                centerDiffX.Z = 0;

            if (centerDiffY.X > -minDoubleVal && centerDiffY.X < minDoubleVal)
                centerDiffY.X = 0;
            if (centerDiffY.Y > -minDoubleVal && centerDiffY.Y < minDoubleVal)
                centerDiffY.Y = 0;
            if (centerDiffY.Z > -minDoubleVal && centerDiffY.Z < minDoubleVal)
                centerDiffY.Z = 0;

            if (centerDiffZ.X > -minDoubleVal && centerDiffZ.X < minDoubleVal)
                centerDiffZ.X = 0;
            if (centerDiffZ.Y > -minDoubleVal && centerDiffZ.Y < minDoubleVal)
                centerDiffZ.Y = 0;
            if (centerDiffZ.Z > -minDoubleVal && centerDiffZ.Z < minDoubleVal)
                centerDiffZ.Z = 0;
        }
开发者ID:benpicco-tmp,项目名称:Gestaltlupe,代码行数:56,代码来源:NavigateControl.cs


注:本文中的Rotation.TransformForNavigation方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。