1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

OCC22578 StlMesh_Mesh migartion from private to protected data fields

This commit is contained in:
RLN and KGV 2011-07-13 08:11:39 +00:00 committed by bugmaster
parent 9c6afe1912
commit 3b5410151b

View File

@ -150,10 +150,10 @@ is
fields
nbTriangles : Integer;
nbVertices : Integer;
domains : SequenceOfMeshDomain;
xyzmax : XYZ;
xyzmin : XYZ;
nbTriangles : Integer is protected;
nbVertices : Integer is protected;
domains : SequenceOfMeshDomain is protected;
xyzmax : XYZ is protected;
xyzmin : XYZ is protected;
end Mesh;