mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-24 00:17:55 +00:00
build-all: drop unused occt patch
Introduced ine21277e80, reference removed in683cadeb7when occt was bumped to 7.3.0 and switched to git-tag based download.
This commit is contained in:
@@ -1,32 +0,0 @@
|
|||||||
http://git.dev.opencascade.org/gitweb/?p=occt.git;a=commitdiff;h=0ab4e621833f4eae945a3762c9a29ee12e2eec53#patch1
|
|
||||||
diff --git a/src/HLRBRep/HLRBRep_InternalAlgo.cxx b/src/HLRBRep/HLRBRep_InternalAlgo.cxx
|
|
||||||
index ca885ca..c13cb06 100644 (file)
|
|
||||||
--- a/src/HLRBRep/HLRBRep_InternalAlgo.cxx
|
|
||||||
+++ b/src/HLRBRep/HLRBRep_InternalAlgo.cxx
|
|
||||||
@@ -165,7 +165,7 @@ void HLRBRep_InternalAlgo::Update ()
|
|
||||||
SB.Bounds(v1,v2,e1,e2,f1,f2);
|
|
||||||
|
|
||||||
for (Standard_Integer e = e1; e <= e2; e++) {
|
|
||||||
- HLRBRep_EdgeData ed = aEDataArray.ChangeValue(e);
|
|
||||||
+ HLRBRep_EdgeData& ed = aEDataArray.ChangeValue(e);
|
|
||||||
HLRAlgo::DecodeMinMax(ed.MinMax(), TheMin, TheMax);
|
|
||||||
if (FirstTime) {
|
|
||||||
FirstTime = Standard_False;
|
|
||||||
@@ -307,7 +307,7 @@ void HLRBRep_InternalAlgo::InitEdgeStatus ()
|
|
||||||
Standard_Integer nf = myDS->NbFaces();
|
|
||||||
|
|
||||||
for (Standard_Integer e = 1; e <= ne; e++) {
|
|
||||||
- HLRBRep_EdgeData ed = aEDataArray.ChangeValue(e);
|
|
||||||
+ HLRBRep_EdgeData& ed = aEDataArray.ChangeValue(e);
|
|
||||||
if (ed.Selected()) ed.Status().ShowAll();
|
|
||||||
}
|
|
||||||
// for (Standard_Integer f = 1; f <= nf; f++) {
|
|
||||||
@@ -368,7 +368,7 @@ void HLRBRep_InternalAlgo::Select ()
|
|
||||||
Standard_Integer nf = myDS->NbFaces();
|
|
||||||
|
|
||||||
for (Standard_Integer e = 1; e <= ne; e++) {
|
|
||||||
- HLRBRep_EdgeData ed = aEDataArray.ChangeValue(e);
|
|
||||||
+ HLRBRep_EdgeData& ed = aEDataArray.ChangeValue(e);
|
|
||||||
ed.Selected(Standard_True);
|
|
||||||
}
|
|
||||||
|
|
||||||
Reference in New Issue
Block a user