1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

OCC22138 Remove *.gxx files from Mesh algorithm

This commit is contained in:
OAN
2011-04-28 14:51:39 +00:00
committed by bugmaster
parent d772319aab
commit 0d88155bb2
42 changed files with 4804 additions and 848 deletions

View File

@@ -49,8 +49,8 @@ uses Boolean from Standard,
DataMapOfShapeReal from TopTools,
ListOfShape from TopTools,
Curve from Geom2d,
MapOfInteger from MeshDS,
BaseAllocator from MeshDS,
MapOfInteger from BRepMesh,
BaseAllocator from BRepMesh,
DataMapOfFaceAttribute from BRepMesh
@@ -202,19 +202,19 @@ is
is static;
VerticesOfDomain
(me; Indices : in out MapOfInteger from MeshDS)
(me; Indices : in out MapOfInteger from BRepMesh)
---Purpose: Gives the list of indices of the vertices
is static;
EdgesOfDomain
(me; Indices : in out MapOfInteger from MeshDS)
(me; Indices : in out MapOfInteger from BRepMesh)
---Purpose: Gives the list of indices of the edges
---C++: inline
is static;
TrianglesOfDomain(me; Indices: in out MapOfInteger from MeshDS)
TrianglesOfDomain(me; Indices: in out MapOfInteger from BRepMesh)
---Purpose: Gives the list of indices of the triangles
---C++: inline
is static;
@@ -296,6 +296,6 @@ fields
myFacestate : Status from BRepMesh;
myMapdefle : DataMapOfShapeReal from TopTools;
myNottriangulated : ListOfShape from TopTools;
myAllocator : BaseAllocator from MeshDS;
myAllocator : BaseAllocator from BRepMesh;
end FastDiscret;