X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FPrimitivesAPI%2FPrimitivesAPI_Box.cpp;h=c65330b3113fba6d08a17e56ff5231081d0698c8;hb=ea593bc59e7e9461f6c4e2afd3f24d621edb1011;hp=2c2e016cb5c03210fff0f9897cbd2d36f41c990f;hpb=0b6a6217d4203167a8044456aed1866335d0c334;p=modules%2Fshaper.git diff --git a/src/PrimitivesAPI/PrimitivesAPI_Box.cpp b/src/PrimitivesAPI/PrimitivesAPI_Box.cpp index 2c2e016cb..c65330b31 100644 --- a/src/PrimitivesAPI/PrimitivesAPI_Box.cpp +++ b/src/PrimitivesAPI/PrimitivesAPI_Box.cpp @@ -1,11 +1,25 @@ -// Copyright (C) 2014-2016 CEA/DEN, EDF R&D --> - -// File: PrimitivesAPI_Box.cpp -// Created: 28 June 2016 -// Author: Clarisse Genrault +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include "PrimitivesAPI_Box.h" +#include #include //================================================================================================== @@ -66,6 +80,32 @@ void PrimitivesAPI_Box::setPoints(const ModelHighAPI_Selection& theFirstPoint, execute(); } +//================================================================================================== +void PrimitivesAPI_Box::dump(ModelHighAPI_Dumper& theDumper) const +{ + FeaturePtr aBase = feature(); + const std::string& aDocName = theDumper.name(aBase->document()); + + theDumper << aBase << " = model.addBox(" << aDocName; + + std::string aCreationMethod = aBase->string(PrimitivesPlugin_Box::CREATION_METHOD())->value(); + + if(aCreationMethod == PrimitivesPlugin_Box::CREATION_METHOD_BY_DIMENSIONS()) { + AttributeDoublePtr anAttrDx = aBase->real(PrimitivesPlugin_Box::DX_ID()); + AttributeDoublePtr anAttrDy = aBase->real(PrimitivesPlugin_Box::DY_ID()); + AttributeDoublePtr anAttrDz = aBase->real(PrimitivesPlugin_Box::DZ_ID()); + theDumper << ", " << anAttrDx << ", " << anAttrDy << ", " << anAttrDz; + } else if (aCreationMethod == PrimitivesPlugin_Box::CREATION_METHOD_BY_TWO_POINTS()) { + AttributeSelectionPtr anAttrFirstPnt = + aBase->selection(PrimitivesPlugin_Box::POINT_FIRST_ID()); + AttributeSelectionPtr anAttrSecondPnt = + aBase->selection(PrimitivesPlugin_Box::POINT_SECOND_ID()); + theDumper << ", " << anAttrFirstPnt << ", " << anAttrSecondPnt; + } + + theDumper << ")" << std::endl; +} + //================================================================================================== BoxPtr addBox(const std::shared_ptr& thePart, const ModelHighAPI_Double& theDx,