View Issue Details

IDProjectCategoryView StatusLast Update
0000909Open CASCADEOCCT:Modeling Algorithmspublic2006-06-29 09:15
ReporterptvAssigned Toifv 
PrioritynormalSeveritytrivial 
Status closedResolutionduplicate 
OSAll 
Fixed in Version5.0.0 
Summary0000909: BRepTools_WireExplorer give different number of edges in dev and FIXOCC40
DescriptionDear 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.
TagsNo tags attached.
Test case number

Attached Files

  • wire_n_face.tar (7,168 bytes)
  • cto16_f1.rle (2,393 bytes)

Relationships

has duplicate 0000446 closed BRepTools_WireExplorer while function checkshape gives not all edges of wire. 
related to 0000908 closedpdn regression in KAS:dev 

Activities

2002-10-29 06:23

 

wire_n_face.tar (7,168 bytes)

2002-10-29 07:39

 

cto16_f1.rle (2,393 bytes)

Issue History

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