FreeCAD

Форк
0
/
Grabber3d.cpp 
67 строк · 3.0 Кб
1
/***************************************************************************
2
 *   Copyright (c) 2019 WandererFan <wandererfan@gmail.com>                *
3
 *                                                                         *
4
 *   This file is part of the FreeCAD CAx development system.              *
5
 *                                                                         *
6
 *   This library is free software; you can redistribute it and/or         *
7
 *   modify it under the terms of the GNU Library General Public           *
8
 *   License as published by the Free Software Foundation; either          *
9
 *   version 2 of the License, or (at your option) any later version.      *
10
 *                                                                         *
11
 *   This library  is distributed in the hope that it will be useful,      *
12
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
13
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
14
 *   GNU Library General Public License for more details.                  *
15
 *                                                                         *
16
 *   You should have received a copy of the GNU Library General Public     *
17
 *   License along with this library; see the file COPYING.LIB. If not,    *
18
 *   write to the Free Software Foundation, Inc., 59 Temple Place,         *
19
 *   Suite 330, Boston, MA  02111-1307, USA                                *
20
 *                                                                         *
21
 ***************************************************************************/
22

23
#include "PreCompiled.h"
24

25
#include <Base/Console.h>
26
#include <Gui/MainWindow.h>
27
#include <Gui/MDIView.h>
28
#include <Gui/View3DInventor.h>
29
#include <Gui/View3DInventorViewer.h>
30

31
#include "Grabber3d.h"
32

33
using namespace TechDrawGui;
34
using namespace Gui;
35

36
void Grabber3d::quickView(View3DInventor* view3d,
37
                          const QColor bgColor,
38
                          QImage &image)
39
{
40
//    Base::Console().Message("G3d::quickView());
41
    if (!Gui::getMainWindow()) {
42
        //this should already be checked in the caller
43
        Base::Console().Warning("G3d::quickView - no Main Window - returning\n");
44
        return;
45
    }
46

47
    if (!view3d) {
48
        //this should also already be checked in the caller
49
        Base::Console().Warning("G3d::quickView - no 3D view for ActiveView - returning\n");
50
        return;
51
    }
52

53
    View3DInventorViewer* viewer = view3d->getViewer();
54
    if (!viewer) {
55
        Base::Console().Warning("G3d::quickView - could not create viewer - returning\n");
56
        return;
57
    }
58
    //figure out the size of the active MdiView
59
    SbViewportRegion vport(viewer->getSoRenderManager()->getViewportRegion());
60
    SbVec2s vpSize = vport.getViewportSizePixels();
61
    short width;
62
    short height;
63
    vpSize.getValue(width, height);
64

65
    int samples = 8;  //magic number from Gui::View3DInventorViewer
66
    viewer->savePicture(width, height, samples, bgColor, image);
67
}
68

69

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.