Search results

  1. D

    Seam removal

    I succeeded, inherited AIS_Shape and updated its Compute method I found all edges whithout seams so: TopoDS_Shape Edges; BRep_Builder B; B.MakeCompound(TopoDS::Compound(Edges)); TopExp_Explorer Ex(myshape, TopAbs_FACE); while (Ex.More()) { const...
  2. D

    Seam removal

    I'll try
  3. D

    Seam removal

    I guess, i changed AIS_Shape to calculate outlines, maybe this is the consequence
  4. D

    Seam removal

    I can't provide all the program code. here is the setting code void OCCObject::OCCObject(System::Windows::Forms::Control^ control, const Handle(Graphic3d_GraphicDriver)& GraphicDriver, const V3d_TypeOfOrientation theOrientation, const Graphic3d_TypeOfShadingModel theType =...
  5. D

    Seam removal

    Hello. "What you probably want to ask is how to get rid of those edges visually (as they might seem useless from engineering perspective)" - Yes, that's right! my code: void Cylindrical_ShellElement::ComputeElement() { Standard_Real Dw = myCylParams.Dw; //diameter Standard_Real hcil...
  6. D

    Seam removal

    Hello. How can I remove these seams from the outline? Moderator: please, use English.
Top