qt_widget_nef_s2.h

来自「CGAL is a collaborative effort of severa」· C头文件 代码 · 共 74 行

H
74
字号
// Copyright (c) 1997-2000  Max-Planck-Institute Saarbruecken (Germany).// All rights reserved.//// This file is part of CGAL (www.cgal.org); you may redistribute it under// the terms of the Q Public License version 1.0.// See the file LICENSE.QPL distributed with CGAL.//// Licensees holding a valid commercial license may use this file in// accordance with the commercial license agreement provided with the software.//// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.//// $Source: /CVSROOT/CGAL/Packages/Nef_S2/include/CGAL/IO/Qt_widget_Nef_S2.h,v $// $Revision: 1.2.4.1 $ $Date: 2004/12/06 14:56:01 $// $Name:  $//// Author(s)     : Peter Hachenberger <hachenberger@mpi-sb.mpg.de>#ifndef CGAL_QT_WIDGET_NEF_S2_H#define CGAL_QT_WIDGET_NEF_S2_H#include <CGAL/IO/Qt_widget_OpenGL.h>#include <CGAL/Nef_S2/Sphere_geometry_OGL.h>CGAL_BEGIN_NAMESPACEtemplate <typename Nef_polyhedron>class Qt_widget_Nef_S2 : public Qt_widget_OpenGL { public:  Qt_widget_Nef_S2(const Nef_polyhedron& N) :     Qt_widget_OpenGL(300,300,1.5) {        object_ = new CGAL::OGL::Unit_sphere(CGAL::OGL::NefS2_to_UnitSphere<Nef_polyhedron>::convert(N));    resize(window_width, window_height);      main = new QPopupMenu;    sub1 = new QPopupMenu;    sub2 = new QPopupMenu;    sub3 = new QPopupMenu;        sub1->insertItem("Reset", RESET_CONTROL);    sub1->insertItem("Rotate", ROTATE);    sub1->insertItem("Scale", SCALE);    sub1->insertItem("Translate in XY", TRANSLATE);    //    sub1->insertItem("Translate in Z", TRANS_Z);    QObject::connect(sub1, SIGNAL(activated(int)), this, SLOT(slotControlMenu(int)));        sub2->insertItem("Faces", CGAL::OGL::SM_FACES);    sub2->insertItem("Skeleton", CGAL::OGL::SM_SKELETON);    sub2->insertItem("Triangulation",CGAL::OGL::SM_TRIANGULATION);    QObject::connect(sub2, SIGNAL(activated(int)), this, SLOT(slotRenderMenu(int)));        sub3->insertItem("Toggle Axes", CGAL::OGL::SM_AXES);    sub3->insertItem("Toggle Unity Cube", CGAL::OGL::SM_CUBE);    QObject::connect(sub3, SIGNAL(activated(int)), this, SLOT(slotOptionsMenu(int)));        main->insertItem("&Control", sub1);    main->insertItem("&Render", sub2);    main->insertItem("&Options", sub3);    //    main->insertItem("&Persp/Ortho", this, SLOT(slotPerspective()));    main->insertItem("&Toggle Fullscreen", this, SLOT(slotFullscreen()));    main->insertItem("&Quit", qApp, SLOT(quit()));  }  ~Qt_widget_Nef_S2() {    delete object_;  }};CGAL_END_NAMESPACE#endif // CGAL_QT_WIDGET_NEF_S2_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?