mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
Implementation of Fuzzy Boolean operations. Such operations allow to perform Boolean operations on the shapes with near-coincidence between the entities of these shapes, i.e. between shapes in which some entities from one shape are intended to be coincide with some entities from the other, but the coincidence is not precise. API for Boolean operations has been improved to have a possibility to add new options. Modified entities: 1. New option of setting additional tolerance have been added to the following classes: class BOPAlgo_ArgumentAnalyzer class BOPAlgo_BOP class BOPAlgo_Builder class BOPAlgo_MakerVolume class BOPAlgo_PaveFiller class BOPDS_DS class BRepAlgoAPI_BooleanOperation class BRepAlgoAPI_Check class BRepAlgoAPI_Common class BRepAlgoAPI_Cut class BRepAlgoAPI_Fuse class BRepAlgoAPI_Section 2. Following draw commands have been modified to support new functionality: BOP commands: bop b1 b2 [tol] bcommon r b1 b2 [tol] bcut r b1 b2 [tol] bfuse r b1 b2 [tol] bsection r s1 s2 [-n2d/-n2d1/-n2d2] [-na] [tol] mkvolume r b1 b2 ... [-c] [-ni] [-s] [tol] bfillds [-s -t] [tol] Check commands: bopcheck Shape [level of check: 0 - 9] [-t -s] [-tol tol] bopargcheck [-F/O/C/T/S/U] [/R|F|T|V|E|I|P|C|S]] [#BF] [-tol tol] 3. Two new classes have been added to API to provide the root interface for algorithms class BRepAlgoAPI_Algo class BRepAlgoAPI_BuilderAlgo Fix to eliminate the warning. Test-cases for issue #25477
48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
-- Created by: Peter KURNEV
|
|
-- Copyright (c) 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.
|
|
|
|
deferred class BuilderAlgo from BRepAlgoAPI
|
|
inherits Algo from BRepAlgoAPI
|
|
---Purpose: provides the root interface for algorithms
|
|
|
|
uses
|
|
BaseAllocator from BOPCol,
|
|
PPaveFiller from BOPAlgo,
|
|
PBuilder from BOPAlgo
|
|
|
|
--raises
|
|
|
|
is
|
|
Initialize
|
|
returns BuilderAlgo from BRepAlgoAPI;
|
|
---C++: alias "Standard_EXPORT virtual ~BRepAlgoAPI_BuilderAlgo();"
|
|
|
|
Initialize (theAllocator: BaseAllocator from BOPCol)
|
|
returns BuilderAlgo from BRepAlgoAPI;
|
|
|
|
SetFuzzyValue(me:out;
|
|
theFuzz : Real from Standard);
|
|
---Purpose: Sets the additional tolerance
|
|
|
|
FuzzyValue(me)
|
|
returns Real from Standard;
|
|
---Purpose: Returns the additional tolerance
|
|
|
|
fields
|
|
myDSFiller : PPaveFiller from BOPAlgo is protected;
|
|
myBuilder : PBuilder from BOPAlgo is protected;
|
|
myFuzzyValue : Real from Standard is protected;
|
|
|
|
end BuilderAlgo;
|