View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0000909 | Open CASCADE | OCCT:Modeling Algorithms | public | 2002-10-29 10:23 | 2006-06-29 09:15 |
Reporter | Assigned To | ||||
Priority | normal | Severity | trivial | ||
Status | closed | Resolution | duplicate | ||
OS | All | ||||
Fixed in Version | 5.0.0 | ||||
Summary | 0000909: BRepTools_WireExplorer give different number of edges in dev and FIXOCC40 | ||||
Description | Dear BUGMASTER, This bug is block OCC908. BRepTools_WireExplorer gives in KAS:dev different number of edges compare with OS:FIXOCC40:Products. The test command to test: TopoDS_Wire mywire = TopoDS::Wire(DBRep::Get(argv[1])); //read the wire TopoDS_Face myface = TopoDS::Face(DBRep::Get(argv[2])); //read the face if (mywire.IsNull() || myface.IsNull()) { cout << "Null object" << endl; return 1; } Standard_Integer count = 0; TopExp_Explorer TE(mywire, TopAbs_VERTEX); if ( TE.More()) { BRepTools_WireExplorer WE; for ( WE.Init(mywire,myface); WE.More(); WE.Next()) { TopoDS_Edge E = WE.Current(); count++; } } cout << "Count = " << count << endl; Wth Bst Rgrds, PTV. | ||||
Tags | No tags attached. | ||||
Test case number | |||||
Date Modified | Username | Field | Change |
---|---|---|---|
2002-10-29 13:02 | bugmaster | BugsThisDependsOn | => 908 |
2002-10-29 13:02 | bugmaster | Assigned To | bugmaster => ifv |
2002-10-29 13:02 | bugmaster | Status | new => assigned |
2002-11-01 18:48 | bugmaster | Status | assigned => closed |
2002-11-01 18:48 | bugmaster | Resolution | @0@ => duplicate |
2011-08-02 11:31 | bugmaster | Category | OCCT:MOA => OCCT:Modeling Algorithms |