Ejemplo n.º 1
0
        //--------------------------------------------------------------------------------------------------

        void _UpdateGizmo()
        {
            if (_Gizmo == null)
            {
                _Gizmo = new AIS_RotationGizmo(_CoordinateSystem);
                _Gizmo.SetLength(100);
                WorkspaceController.Workspace.AisContext.Display(_Gizmo, false);
            }
            else
            {
                _Gizmo.SetComponent(_CoordinateSystem.Rotated(RotationAxis, Delta));
            }
        }