FreeCAD

Форк
0
/
FeatureCompound.cpp 
92 строки · 3.2 Кб
1
/***************************************************************************
2
 *   Copyright (c) 2013 Werner Mayer <wmayer[at]users.sourceforge.net>     *
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
#ifndef _PreComp_
25
# include <BRep_Builder.hxx>
26
# include <Standard_Failure.hxx>
27
# include <TopoDS_Compound.hxx>
28
# include <TopExp.hxx>
29
# include <TopTools_IndexedMapOfShape.hxx>
30
#endif
31

32
#include "FeatureCompound.h"
33

34

35
using namespace Part;
36

37
PROPERTY_SOURCE(Part::Compound, Part::Feature)
38

39
Compound::Compound()
40
{
41
    ADD_PROPERTY(Links,(nullptr));
42
    Links.setSize(0);
43
}
44

45
Compound::~Compound() = default;
46

47
short Compound::mustExecute() const
48
{
49
    if (Links.isTouched())
50
        return 1;
51
    return 0;
52
}
53

54
App::DocumentObjectExecReturn *Compound::execute()
55
{
56
    try {
57
        // avoid duplicates without changing the order
58
        // See also ViewProviderCompound::updateData
59
        std::set<DocumentObject*> tempLinks;
60

61
        std::vector<TopoShape> shapes;
62
        for (auto obj : Links.getValues()) {
63
            if (!tempLinks.insert(obj).second) {
64
                continue;
65
            }
66
            auto sh = Feature::getTopoShape(obj);
67
            if (!sh.isNull()) {
68
                shapes.push_back(sh);
69
            }
70
        }
71
        this->Shape.setValue(TopoShape().makeElementCompound(shapes));
72
        return Part::Feature::execute();
73
    }
74
    catch (Standard_Failure& e) {
75
        return new App::DocumentObjectExecReturn(e.GetMessageString());
76
    }
77
}
78

79
////////////////////////////////////////////////////////////////////////
80

81
PROPERTY_SOURCE(Part::Compound2, Part::Compound)
82

83
Compound2::Compound2() {
84
    Shape.setStatus(App::Property::Transient,true);
85
}
86

87
void Compound2::onDocumentRestored() {
88
    Base::Placement pla = Placement.getValue();
89
    auto res = execute();
90
    delete res;
91
    Placement.setValue(pla);
92
}
93

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

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

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

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