1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-04 13:13:25 +03:00
Files
occt/src/BRepFilletAPI/BRepFilletAPI_LocalOperation.cdl
abv 6e33d3ced2 0024830: Remove redundant keyword 'mutable' in CDL declarations
Redundant keyword 'mutable' removed in CDL files.
In IGESConvGeom_GeomBuilder, unused methods MakeXY() and MakeXYZ() removed.
Method StepAP214_AutoDesignGroupAssignment::Init() replicating same method of the base class is removed as it causes CDL extraction error after above (seemingly irrelevant) changes.
2014-05-29 14:58:25 +04:00

144 lines
4.6 KiB
Plaintext

-- Created on: 1998-01-29
-- Created by: Laurent BOURESCHE
-- Copyright (c) 1998-1999 Matra Datavision
-- Copyright (c) 1999-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 LocalOperation from BRepFilletAPI inherits MakeShape from BRepBuilderAPI
---Purpose: Construction of fillets on the edges of a Shell.
uses
Shape from TopoDS,
Edge from TopoDS,
Vertex from TopoDS,
ListOfShape from TopTools,
SecHArray1 from ChFiDS
is
------------------------------------------------------------------
--- Add d contour
------------------------------------------------------------------
Add(me : in out; E : Edge from TopoDS)
---Purpose: Adds a contour in the builder (builds a
-- contour of tangent edges).
---Level: Public
is deferred;
ResetContour(me : in out;
IC : Integer from Standard)
---Purpose: Reset the contour of index IC, there is nomore
-- information in the contour.
---Level: Public
is deferred;
NbContours(me)
---Purpose: Number of contours.
---Level: Advanced
returns Integer from Standard is deferred;
Contour(me; E : Edge from TopoDS)
---Purpose: Returns the index of the contour containing the edge
-- E, returns 0 if E doesn't belong to any contour.
---Level: Public
returns Integer from Standard is deferred;
NbEdges(me; I : Integer from Standard)
---Purpose: Number of Edges in the contour I.
--
---Level: Advanced
returns Integer from Standard
is deferred;
Edge(me; I,J : Integer from Standard)
---Purpose: Returns the Edge J in the contour I.
--
---C++: return const &
---Level: Advanced
returns Edge from TopoDS
is deferred;
Remove(me : in out; E : Edge from TopoDS)
---Purpose: remove the contour containing the Edge E.
---Level: Advanced
is deferred;
Length(me; IC : Integer from Standard) returns Real from Standard
---Purpose: returns the length the contour of index IC.
is deferred;
FirstVertex(me; IC : Integer from Standard) returns Vertex from TopoDS
---Purpose: Returns the first Vertex of the contour of index IC.
---Level: Advanced
is deferred;
LastVertex(me; IC : Integer from Standard) returns Vertex from TopoDS
---Purpose: Returns the last Vertex of the contour of index IC.
---Level: Advanced
is deferred;
Abscissa(me;
IC : Integer from Standard;
V : Vertex from TopoDS)
returns Real from Standard
---Purpose: returns the abscissa of the vertex V on
-- the contour of index IC.
is deferred;
RelativeAbscissa(me;
IC : Integer from Standard;
V : Vertex from TopoDS)
returns Real from Standard
---Purpose: returns the relative abscissa([0.,1.]) of the
-- vertex V on the contour of index IC.
is deferred;
ClosedAndTangent(me; IC : Integer from Standard)
returns Boolean from Standard
---Purpose: returns true if the contour of index IC is closed
-- an tangent.
is deferred;
Closed(me; IC : Integer from Standard)
returns Boolean from Standard
---Purpose: returns true if the contour of index IC is closed
is deferred;
Reset(me : in out)
---Purpose: Reset all the fields updated by Build operation and
-- leave the algorithm in the same state than before
-- build call. It allows contours and radius
-- modifications to build the result another time.
---Level: Advanced
is deferred;
-------------------------------
---Methods for quick simulation
-------------------------------
Simulate(me : in out; IC : Integer from Standard)
is deferred;
NbSurf(me; IC : Integer from Standard)
returns Integer from Standard
is deferred;
Sect(me; IC, IS : Integer from Standard)
returns SecHArray1 from ChFiDS
is deferred;
end LocalOperation;