mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Implementation of the new class *BOPAlgo_MakeConnected* for making the group of touching same-dimensional shapes connected. Provide the material association for the first sub-elements of the input shapes. Provide possibility to make the connected shape periodic. Draw commands for new algorithm: * makeconnected - make the input shapes connected or glued, performs material associations; * cmaterialson - returns the materials located on the requested side of a shape; * cmakeperiodic - makes the connected shape periodic in requested directions; * crepeatshape - repeats the periodic connected shape in requested directions requested number of times; * cperiodictwins - returns all periodic twins for the shape; * cclearrepetitions - clears all previous repetitions of the periodic shape, keeping the shape periodic. Documentation & test cases for the new algorithm.
81 lines
2.4 KiB
C++
81 lines
2.4 KiB
C++
// Created on: 2000-05-18
|
|
// Created by: Peter KURNEV
|
|
// Copyright (c) 2000-2014 OPEN CASCADE SAS
|
|
//
|
|
// 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.
|
|
|
|
#ifndef _BOPTest_HeaderFile
|
|
#define _BOPTest_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <Draw_Interpretor.hxx>
|
|
class BOPTest_Objects;
|
|
class BOPTest_DrawableShape;
|
|
class Message_Report;
|
|
|
|
class BOPTest
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
Standard_EXPORT static void AllCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void BOPCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void CheckCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void TolerCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void LowCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void ObjCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void PartitionCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void APICommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void OptionCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void Factory (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void DebugCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void CellsCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void UtilityCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void RemoveFeaturesCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void PeriodicityCommands (Draw_Interpretor& aDI);
|
|
|
|
Standard_EXPORT static void MkConnectedCommands (Draw_Interpretor& aDI);
|
|
|
|
//! Prints errors and warnings if any and draws attached shapes
|
|
//! if flag BOPTest_Objects::DrawWarnShapes() is set
|
|
Standard_EXPORT static void ReportAlerts (const Handle(Message_Report)& theReport);
|
|
|
|
protected:
|
|
|
|
private:
|
|
|
|
friend class BOPTest_Objects;
|
|
friend class BOPTest_DrawableShape;
|
|
|
|
};
|
|
|
|
#endif // _BOPTest_HeaderFile
|