1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-26 10:19:45 +03:00
occt/src/BRepMesh/BRepMesh_Context.cxx
mkrylova 4945e8be99 0031789: Coding Rules - remove redundant Standard_EXPORT from TKMesh
- Standard_EXPORT which were specified for inline methods were deleted.
- ALL occurrences of DEFINE_STANDARD_RTTI_INLINE were replaced by DEFINE_STANDARD_RTTIEXT in header files and IMPLEMENT_STANDARD_RTTIEXT in source files
- ALL occurrences of "inline" keyword were deleted where it didn't not cause a linkage errors
- Added source files for classes that were without them for IMPLEMENT_STANDARD_RTTIEXT
2020-10-02 16:12:49 +03:00

88 lines
2.9 KiB
C++

// Created on: 2016-04-07
// Copyright (c) 2016 OPEN CASCADE SAS
// Created by: Oleg AGASHIN
//
// This file is part of Open CASCADE Technology software library.
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License version 2.1 as published
// by the Free Software Foundation, with special exception defined in the file
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
// distribution for complete text of the license and disclaimer of any warranty.
//
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <BRepMesh_Context.hxx>
#include <BRepMesh_ModelBuilder.hxx>
#include <BRepMesh_EdgeDiscret.hxx>
#include <BRepMesh_ModelHealer.hxx>
#include <BRepMesh_FaceDiscret.hxx>
#include <BRepMesh_ModelPreProcessor.hxx>
#include <BRepMesh_ModelPostProcessor.hxx>
#include <BRepMesh_MeshAlgoFactory.hxx>
#include <BRepMesh_DelabellaMeshAlgoFactory.hxx>
#include <Message.hxx>
#include <OSD_Environment.hxx>
IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_Context, IMeshTools_Context)
//=======================================================================
// Function: Constructor
// Purpose :
//=======================================================================
BRepMesh_Context::BRepMesh_Context (IMeshTools_MeshAlgoType theMeshType)
{
if (theMeshType == IMeshTools_MeshAlgoType_DEFAULT)
{
TCollection_AsciiString aValue = OSD_Environment ("CSF_MeshAlgo").Value();
aValue.LowerCase();
if (aValue == "watson"
|| aValue == "0")
{
theMeshType = IMeshTools_MeshAlgoType_Watson;
}
else if (aValue == "delabella"
|| aValue == "1")
{
theMeshType = IMeshTools_MeshAlgoType_Delabella;
}
else
{
if (!aValue.IsEmpty())
{
Message::SendWarning (TCollection_AsciiString("BRepMesh_Context, ignore unknown algorithm '") + aValue + "' specified in CSF_MeshAlgo variable");
}
theMeshType = IMeshTools_MeshAlgoType_Watson;
}
}
Handle (IMeshTools_MeshAlgoFactory) aAlgoFactory;
switch (theMeshType)
{
case IMeshTools_MeshAlgoType_DEFAULT:
case IMeshTools_MeshAlgoType_Watson:
aAlgoFactory = new BRepMesh_MeshAlgoFactory();
break;
case IMeshTools_MeshAlgoType_Delabella:
aAlgoFactory = new BRepMesh_DelabellaMeshAlgoFactory();
break;
}
SetModelBuilder (new BRepMesh_ModelBuilder);
SetEdgeDiscret (new BRepMesh_EdgeDiscret);
SetModelHealer (new BRepMesh_ModelHealer);
SetPreProcessor (new BRepMesh_ModelPreProcessor);
SetFaceDiscret (new BRepMesh_FaceDiscret (aAlgoFactory));
SetPostProcessor(new BRepMesh_ModelPostProcessor);
}
//=======================================================================
// Function: Destructor
// Purpose :
//=======================================================================
BRepMesh_Context::~BRepMesh_Context ()
{
}