1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0023409: Tricheck command doesn't report problem when triangulation has unexpected holes

Tricheck command improvement for checking triangulation holes on free links
More obvious error message
Added test case bugs demo CR23409
Modified test case offset wire_closed_outside_0_005 G7
This commit is contained in:
oan
2012-09-07 13:58:12 +04:00
parent 319e4241ee
commit 2e1a4dae4b
5 changed files with 139 additions and 3 deletions

View File

@@ -30,7 +30,11 @@ uses Boolean from Standard,
DegreeOfFreedom from BRepMesh
is Create (vDebut : Integer from Standard;
is Create
returns Edge from BRepMesh;
---C++: inline
Create (vDebut : Integer from Standard;
vFin : Integer from Standard;
canMove : DegreeOfFreedom from BRepMesh)
---Purpose: Contructs a link beetween to vertices.

View File

@@ -18,6 +18,12 @@
// purpose or non-infringement. Please see the License for the specific terms
// and conditions governing the rights and limitations under the License.
inline BRepMesh_Edge::BRepMesh_Edge()
: myFirstNode(-1),
myLastNode(-1),
myMovability(BRepMesh_Deleted)
{
}
inline Standard_Integer BRepMesh_Edge::FirstNode()const
{