mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-27 15:24:02 +08:00
129 lines
4.6 KiB
Plaintext
Executable File
129 lines
4.6 KiB
Plaintext
Executable File
-- Created on: 1993-07-06
|
|
-- Created by: Yves FRICAUD
|
|
-- Copyright (c) 1993-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.
|
|
|
|
|
|
|
|
|
|
package MAT2d
|
|
|
|
---Purpose : Package of computation of Bisector locus on a
|
|
-- Set of geometrys from Geom2d.
|
|
|
|
uses
|
|
|
|
MMgt,
|
|
gp,
|
|
Geom2d,
|
|
TColStd,
|
|
TCollection,
|
|
TColgp,
|
|
TColGeom2d,
|
|
MAT,
|
|
Bisector
|
|
|
|
is
|
|
|
|
deferred class SketchExplorer;
|
|
---Purpose: SletchExplorer contains an iterator on a set of geometrys
|
|
-- from Geom2d. It's use by BisectingLocus.
|
|
|
|
generic class BisectingLocus;
|
|
---Purpose: Constuction of the map of the bisector locus on a
|
|
-- set of geometrys from Geom2d.
|
|
|
|
class Tool2d;
|
|
---Purpose: Tool2d contains the geometrys of the map. Tool2d
|
|
-- contains the set of the geometric's methode used for
|
|
-- the map's computation.
|
|
|
|
class Mat2d instantiates Mat from MAT (Tool2d);
|
|
|
|
class Connexion;
|
|
---Purpose: a Connexion links two lines.
|
|
|
|
class MiniPath;
|
|
---Purpose: MiniPath computes one minimum path to link all the
|
|
-- lines of a set.
|
|
|
|
class Circuit;
|
|
---Purpose: EquiCircuit gives a Circuit passing by all the lines
|
|
-- in a set and all the connexions of the minipath associated.
|
|
|
|
class CutCurve;
|
|
---Purpose: Cuts a curve at the extremas of curvature
|
|
-- and at the inflections. Constructs a trimmed
|
|
-- Curve for each interval.
|
|
|
|
class SequenceOfConnexion instantiates Sequence from TCollection
|
|
(Connexion from MAT2d);
|
|
|
|
class DataMapOfIntegerSequenceOfConnexion instantiates DataMap
|
|
from TCollection (Integer from Standard,
|
|
SequenceOfConnexion from MAT2d,
|
|
MapIntegerHasher from TColStd);
|
|
|
|
class Array2OfConnexion instantiates Array2 from TCollection
|
|
(Connexion from MAT2d);
|
|
|
|
|
|
class DataMapOfIntegerBisec instantiates DataMap from TCollection
|
|
(Integer from Standard,
|
|
Bisec from Bisector,
|
|
MapIntegerHasher from TColStd);
|
|
|
|
class DataMapOfIntegerPnt2d instantiates DataMap from TCollection
|
|
(Integer from Standard,
|
|
Pnt2d from gp,
|
|
MapIntegerHasher from TColStd);
|
|
|
|
class DataMapOfIntegerVec2d instantiates DataMap from TCollection
|
|
(Integer from Standard,
|
|
Vec2d from gp,
|
|
MapIntegerHasher from TColStd);
|
|
|
|
class SequenceOfSequenceOfCurve instantiates Sequence from TCollection
|
|
(SequenceOfCurve from TColGeom2d);
|
|
|
|
class SequenceOfSequenceOfGeometry instantiates Sequence from TCollection
|
|
(SequenceOfGeometry from TColGeom2d);
|
|
|
|
class DataMapOfIntegerConnexion instantiates DataMap from TCollection
|
|
(Integer from Standard,
|
|
Connexion from MAT2d,
|
|
MapIntegerHasher from TColStd);
|
|
|
|
class BiInt;
|
|
|
|
class MapBiIntHasher;
|
|
|
|
class DataMapOfBiIntSequenceOfInteger instantiates DataMap
|
|
from TCollection (BiInt from MAT2d,
|
|
SequenceOfInteger from TColStd,
|
|
MapBiIntHasher from MAT2d);
|
|
|
|
class DataMapOfBiIntInteger instantiates DataMap
|
|
from TCollection (BiInt from MAT2d,
|
|
Integer from Standard,
|
|
MapBiIntHasher from MAT2d);
|
|
end MAT2d;
|
|
|
|
|
|
|