+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist11,Standard_Real& distP12,Standard_Real& distP21,Standard_Real& distP22,gp_Pnt& P11,gp_Pnt& P12,gp_Pnt& P21,gp_Pnt& P22) const { Standard_Real xdist11, xdistP12, xdistP21, xdistP22; TrimmedSquareDistances(xdist11, xdistP12, xdistP21, xdistP22, P11, P12, P21, P22); dist11=sqrt(xdist11); distP12=sqrt(xdistP12); distP21=sqrt(xdistP21); distP22=sqrt(xdistP22); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist1,Standard_Real& dist2,gp_Pnt& pnt1,gp_Pnt& pnt2) const { Standard_Real xdist1, xdist2; TrimmedSquareDistances(xdist1, xdist2, pnt1, pnt2); dist1 = sqrt(xdist1); dist2 = sqrt(xdist2); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
Standard_EXPORT const MeshDS_BaseAllocator& Allocator() const;
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, typos in ForseRemoveNode() and ForceRemoveLink() have been fixed. Add an alias to not break existing code
+void ForseRemoveNode(const Standard_Integer Index) { ForceRemoveNode(Index); }
+void ForseRemoveLink(const Standard_Integer Index) { ForceRemoveLink(Index); }
DEFINE_STANDARD_RTTI(BRepMesh_DataStructureOfDelaun)
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist1,Standard_Real& dist2,gp_Pnt& P1,gp_Pnt& P2) const { Standard_Real xdist1, xdist2; TrimmedSquareDistances(xdist1, xdist2, P1, P2); dist1 = sqrt(xdist1); dist2 = sqrt(xdist2); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist1,Standard_Real& dist2,gp_Pnt2d& P1,gp_Pnt2d& P2) const { Standard_Real xdist1, xdist2; TrimmedSquareDistances(xdist1, xdist2, P1, P2); dist1 = sqrt(xdist1); dist2 = sqrt(xdist2); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
Standard_EXPORT Extrema_POnCurv Point(const Standard_Integer N) const;
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
Standard_EXPORT Extrema_POnCurv2d Point(const Standard_Integer N) const;
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist11,Standard_Real& distP12,Standard_Real& distP21,Standard_Real& distP22,gp_Pnt& P11,gp_Pnt& P12,gp_Pnt& P21,gp_Pnt& P22) const { Standard_Real xdist11, xdistP12, xdistP21, xdistP22; TrimmedSquareDistances(xdist11, xdistP12, xdistP21, xdistP22, P11, P12, P21, P22); dist11 = sqrt(xdist11); xdistP12 = sqrt(distP12); distP21 = sqrt(xdistP21); distP22 = sqrt(xdistP22); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist11,Standard_Real& distP12,Standard_Real& distP21,Standard_Real& distP22,gp_Pnt2d& P11,gp_Pnt2d& P12,gp_Pnt2d& P21,gp_Pnt2d& P22) const { Standard_Real xdist11, xdistP12, xdistP21, xdistP22; TrimmedSquareDistances(xdist11, xdistP12, xdistP21, xdistP22, P11, P12, P21, P22); dist11 = sqrt(xdist11); xdistP12 = sqrt(distP12); distP21 = sqrt(xdistP21); distP22 = sqrt(xdistP22);}
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist1,Standard_Real& dist2,gp_Pnt& P1,gp_Pnt& P2) const { Standard_Real xdist1, xdist2; TrimmedSquareDistances(xdist1, xdist2, P1, P2); dist1 = sqrt(xdist1); dist2 = sqrt(xdist2); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dist1,Standard_Real& dist2,gp_Pnt2d& P1,gp_Pnt2d& P2) const { Standard_Real xdist1, xdist2; TrimmedSquareDistances(xdist1, xdist2, P1, P2); dist1 = sqrt(xdist1); dist2 = sqrt(xdist2); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N = 1) const { return sqrt(SquareDistance(N)); }
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, TrimmedDistances() has been replaced by TrimmedSquareDistances(). Add an alias to not break existing code
+void TrimmedDistances(Standard_Real& dUfVf,Standard_Real& dUfVl,Standard_Real& dUlVf,Standard_Real& dUlVl,gp_Pnt& PUfVf,gp_Pnt& PUfVl,gp_Pnt& PUlVf,gp_Pnt& PUlVl) const { Standard_Real xdUfVf, xdUfVl, xdUlVf, xdUlVl; TrimmedSquareDistances(xdUfVf, xdUfVl, xdUlVf, xdUlVl, PUfVf, PUfVl, PUlVf, PUlVl); dUfVf = sqrt(xdUfVf); dUfVl = sqrt(xdUfVl); dUlVf = sqrt(xdUlVf); dUlVl = sqrt(xdUlVl); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGE: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value(const Standard_Integer N) const { return sqrt(SquareDistance(N)); }
protected:
+// DEBIAN SPECIFIC CHANGES: In OCC 6.5.0, Value() has been replaced by SquareDistance(). Add an alias to not break existing code
+Standard_Real Value() const { return sqrt(SquareDistance()); }
protected: