mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-05 03:47:46 +08:00
123 lines
4.5 KiB
Plaintext
Executable File
123 lines
4.5 KiB
Plaintext
Executable File
-- Created on: 1994-06-06
|
|
-- Created by: Jean Yves LEBEY
|
|
-- Copyright (c) 1994-1999 Matra Datavision
|
|
-- Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
--
|
|
-- The content of this file is subject to the Open CASCADE Technology Public
|
|
-- License Version 6.5 (the "License"). You may not use the content of this file
|
|
-- except in compliance with the License. Please obtain a copy of the License
|
|
-- at http://www.opencascade.org and read it completely before using this file.
|
|
--
|
|
-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
--
|
|
-- The Original Code and all software distributed under the License is
|
|
-- distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
-- Initial Developer hereby disclaims all such warranties, including without
|
|
-- limitation, any warranties of merchantability, fitness for a particular
|
|
-- purpose or non-infringement. Please see the License for the specific terms
|
|
-- and conditions governing the rights and limitations under the License.
|
|
|
|
|
|
|
|
class InterferenceIterator from TopOpeBRepDS
|
|
|
|
---Purpose: Iterate on interferences of a list, matching
|
|
-- conditions on interferences.
|
|
-- Nota :
|
|
-- inheritance of ListIteratorOfListOfInterference from
|
|
-- TopOpeBRepDS has not been done because of the
|
|
-- impossibility of naming the classical More, Next
|
|
-- methods which are declared as static in
|
|
-- TCollection_ListIteratorOfList ... . ListIteratorOfList
|
|
-- has benn placed as a field of InterferenceIterator.
|
|
|
|
uses
|
|
|
|
Kind from TopOpeBRepDS,
|
|
Interference from TopOpeBRepDS,
|
|
ListOfInterference from TopOpeBRepDS,
|
|
ListIteratorOfListOfInterference from TopOpeBRepDS
|
|
|
|
is
|
|
|
|
Create returns InterferenceIterator from TopOpeBRepDS;
|
|
|
|
Create(L : ListOfInterference from TopOpeBRepDS)
|
|
returns InterferenceIterator from TopOpeBRepDS;
|
|
---Purpose: Creates an iterator on the Interference of list <L>.
|
|
|
|
Init(me : in out; L : ListOfInterference from TopOpeBRepDS)
|
|
---Purpose: re-initialize interference iteration process on
|
|
-- the list of interference <L>.
|
|
-- Conditions are not modified.
|
|
is static;
|
|
|
|
GeometryKind(me : in out; GK : Kind from TopOpeBRepDS)
|
|
---Purpose: define a condition on interference iteration process.
|
|
-- Interference must match the Geometry Kind <ST>
|
|
is static;
|
|
|
|
Geometry(me : in out; G : Integer from Standard)
|
|
---Purpose: define a condition on interference iteration process.
|
|
-- Interference must match the Geometry <G>
|
|
is static;
|
|
|
|
SupportKind(me : in out; ST : Kind from TopOpeBRepDS)
|
|
---Purpose: define a condition on interference iteration process.
|
|
-- Interference must match the Support Kind <ST>
|
|
is static;
|
|
|
|
Support(me : in out; S : Integer from Standard)
|
|
---Purpose: define a condition on interference iteration process.
|
|
-- Interference must match the Support <S>
|
|
is static;
|
|
|
|
Match(me : in out)
|
|
---Purpose: reach for an interference matching the conditions
|
|
-- (if defined).
|
|
is static;
|
|
|
|
MatchInterference(me; I : Interference from TopOpeBRepDS)
|
|
returns Boolean from Standard
|
|
---Purpose: Returns True if the Interference <I> matches the
|
|
-- conditions (if defined).
|
|
-- If no conditions defined, returns True.
|
|
is virtual;
|
|
|
|
More(me) returns Boolean from Standard
|
|
---Purpose: Returns True if there is a current Interference in
|
|
-- the iteration.
|
|
is static;
|
|
|
|
Next(me : in out)
|
|
---Purpose: Move to the next Interference.
|
|
is static;
|
|
|
|
Value(me) returns any Interference from TopOpeBRepDS
|
|
---Purpose: Returns the current Interference, matching the
|
|
-- conditions (if defined).
|
|
---C++: return &
|
|
is static;
|
|
|
|
ChangeIterator(me : in out)
|
|
returns ListIteratorOfListOfInterference from TopOpeBRepDS
|
|
is static;
|
|
---C++: return &
|
|
|
|
fields
|
|
|
|
myIterator : ListIteratorOfListOfInterference from TopOpeBRepDS;
|
|
|
|
myGKDef : Boolean from Standard;
|
|
myGK : Kind from TopOpeBRepDS; -- Geometry Kind
|
|
myGDef : Boolean from Standard;
|
|
myG : Integer from Standard; -- Geometry
|
|
|
|
mySKDef : Boolean from Standard;
|
|
mySK : Kind from TopOpeBRepDS; -- Support Kind
|
|
mySDef : Boolean from Standard;
|
|
myS : Integer from Standard; -- Support
|
|
|
|
end InterferenceIterator from TopOpeBRepDS;
|