mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-10 08:08:36 +08:00
60 lines
1.0 KiB
Plaintext
Executable File
60 lines
1.0 KiB
Plaintext
Executable File
-- File: IntPoly.cdl
|
|
-- Created: Mon Jul 17 10:25:09 1995
|
|
-- Author: Stagiaire Alain JOURDAIN
|
|
-- <ajo@phobox>
|
|
---Copyright: Matra Datavision 1995
|
|
|
|
|
|
package IntPoly
|
|
|
|
---Purpose:
|
|
|
|
|
|
uses Standard,
|
|
TCollection,
|
|
gp,
|
|
TColStd,
|
|
TColgp,
|
|
TopoDS,
|
|
TopAbs,
|
|
TopExp,
|
|
TopLoc,
|
|
Poly
|
|
|
|
is class SequenceOfSequenceOfPnt2d
|
|
instantiates Sequence from TCollection (SequenceOfPnt2d from TColgp);
|
|
|
|
class Pnt2dHasher;
|
|
|
|
class IndexedMapOfPnt2d
|
|
instantiates IndexedMap from TCollection (Pnt2d from gp,
|
|
Pnt2dHasher from IntPoly);
|
|
|
|
class PlaneSection;
|
|
|
|
class SequenceOfSequenceOfPnt
|
|
instantiates Sequence from TCollection (SequenceOfPnt from TColgp);
|
|
|
|
class PntHasher;
|
|
|
|
class IndexedMapOfPnt
|
|
instantiates IndexedMap from TCollection (Pnt from gp,
|
|
PntHasher from IntPoly);
|
|
|
|
class ShapeSection;
|
|
|
|
|
|
end IntPoly;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|