mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0022623: Use of uninitialized variables in HLRBRep_Curve::UpdateMinMax in debug mode
This commit is contained in:
parent
4714a7a650
commit
733a0e55f0
@ -1,8 +1,7 @@
|
||||
-- File: Contap.cdl
|
||||
-- Created: Fri Feb 5 11:50:39 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: Contap.cdl
|
||||
-- Created: Fri Feb 5 11:50:39 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
package Contap
|
||||
@ -82,4 +81,3 @@ is
|
||||
|
||||
|
||||
end Contap;
|
||||
|
||||
|
@ -1,10 +1,7 @@
|
||||
-- File: Contap_ArcFunction.cdl
|
||||
-- Created: Thu Jun 3 12:32:05 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
-- File: Contap_ArcFunction.cdl
|
||||
-- Created: Thu Jun 3 12:32:05 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
generic class ArcFunction from Contap
|
||||
(TheArc as any;
|
||||
|
@ -1,8 +1,11 @@
|
||||
// File: Contap_ArcFunction.gxx
|
||||
// Created: Thu Jun 3 12:32:05 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <gp_Pnt2d.hxx>
|
||||
#include <gp_Vec2d.hxx>
|
||||
|
||||
|
||||
|
||||
Contap_ArcFunction::Contap_ArcFunction ():
|
||||
myMean(1.),
|
||||
myType(Contap_ContourStd),
|
||||
@ -72,11 +75,7 @@ Standard_Boolean Contap_ArcFunction::Derivative (const Standard_Real U,
|
||||
{
|
||||
gp_Pnt2d pt2d;
|
||||
gp_Vec2d d2d;
|
||||
#ifndef DEB
|
||||
Standard_Real dfu =0.,dfv =0.;
|
||||
#else
|
||||
Standard_Real dfu,dfv;
|
||||
#endif
|
||||
// gp_Vec d1u,d1v,d2u,d2v,d2uv;
|
||||
TheArcTool::D1(myArc,U,pt2d,d2d);
|
||||
// TheSurfaceTool::D2(mySurf,pt2d.X(),pt2d.Y(),solpt,d1u,d1v,d2u,d2v,d2uv);
|
||||
@ -130,11 +129,7 @@ Standard_Boolean Contap_ArcFunction::Values (const Standard_Real U,
|
||||
{
|
||||
gp_Pnt2d pt2d;
|
||||
gp_Vec2d d2d;
|
||||
#ifndef DEB
|
||||
Standard_Real dfu =0.,dfv =0.;
|
||||
#else
|
||||
Standard_Real dfu,dfv;
|
||||
#endif
|
||||
// gp_Vec d1u,d1v,d2u,d2v,d2uv;
|
||||
TheArcTool::D1(myArc,U,pt2d,d2d);
|
||||
// TheSurfaceTool::D2(mySurf,pt2d.X(),pt2d.Y(),solpt,d1u,d1v,d2u,d2v,d2uv);
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_ArcFunction.lxx
|
||||
// Created: Thu Jun 3 12:32:05 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
inline void Contap_ArcFunction::Set(const gp_Dir& Direction,
|
||||
const Standard_Real Angle)
|
||||
{
|
||||
@ -37,4 +42,3 @@ inline const gp_Pnt& Contap_ArcFunction::Valpoint
|
||||
{
|
||||
return seqpt(Index);
|
||||
}
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
-- File: Contap_ArcTool.cdl
|
||||
-- Created: Wed May 12 09:09:34 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
-- File: Contap_ArcTool.cdl
|
||||
-- Created: Wed May 12 09:09:34 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
deferred generic class ArcTool from Contap
|
||||
@ -48,5 +46,3 @@ is
|
||||
|
||||
|
||||
end ArcTool;
|
||||
|
||||
|
||||
|
@ -1,10 +1,7 @@
|
||||
-- File: Contap_ContAna.cdl
|
||||
-- Created: Thu Mar 4 10:51:23 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@form4>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
-- File: Contap_ContAna.cdl
|
||||
-- Created: Thu Mar 4 10:51:23 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
class ContAna from Contap
|
||||
|
@ -1,17 +1,19 @@
|
||||
// File: Contap_ContAna.cxx
|
||||
// Created: Thu Mar 4 10:51:23 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <Contap_ContAna.ixx>
|
||||
|
||||
#include <gp_XYZ.hxx>
|
||||
#include <gp.hxx>
|
||||
|
||||
|
||||
|
||||
#define Tolpetit 1.e-8
|
||||
|
||||
|
||||
Contap_ContAna::Contap_ContAna (): done(Standard_False) {}
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Sphere& S,
|
||||
const gp_Dir& D)
|
||||
const gp_Dir& D)
|
||||
{
|
||||
done = Standard_False;
|
||||
typL = GeomAbs_Circle;
|
||||
@ -29,8 +31,8 @@ void Contap_ContAna::Perform (const gp_Sphere& S,
|
||||
}
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Sphere& S,
|
||||
const gp_Dir& D,
|
||||
const Standard_Real Angle)
|
||||
const gp_Dir& D,
|
||||
const Standard_Real Angle)
|
||||
{
|
||||
done = Standard_False;
|
||||
typL = GeomAbs_Circle;
|
||||
@ -50,7 +52,7 @@ void Contap_ContAna::Perform (const gp_Sphere& S,
|
||||
}
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Sphere& S,
|
||||
const gp_Pnt& Eye)
|
||||
const gp_Pnt& Eye)
|
||||
{
|
||||
done = Standard_False;
|
||||
|
||||
@ -81,10 +83,8 @@ void Contap_ContAna::Perform (const gp_Sphere& S,
|
||||
done = Standard_True;
|
||||
}
|
||||
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Cylinder& C,
|
||||
const gp_Dir& D)
|
||||
|
||||
const gp_Dir& D)
|
||||
{
|
||||
done = Standard_False;
|
||||
|
||||
@ -107,9 +107,8 @@ void Contap_ContAna::Perform (const gp_Cylinder& C,
|
||||
}
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Cylinder& C,
|
||||
const gp_Dir& D,
|
||||
const Standard_Real Angle)
|
||||
|
||||
const gp_Dir& D,
|
||||
const Standard_Real Angle)
|
||||
{
|
||||
done = Standard_False;
|
||||
|
||||
@ -167,8 +166,7 @@ void Contap_ContAna::Perform (const gp_Cylinder& C,
|
||||
}
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Cylinder& C,
|
||||
const gp_Pnt& Eye)
|
||||
|
||||
const gp_Pnt& Eye)
|
||||
{
|
||||
done = Standard_False;
|
||||
|
||||
@ -195,10 +193,8 @@ void Contap_ContAna::Perform (const gp_Cylinder& C,
|
||||
done = Standard_True;
|
||||
}
|
||||
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Cone& C,
|
||||
const gp_Dir& D)
|
||||
|
||||
const gp_Dir& D)
|
||||
{
|
||||
done = Standard_False;
|
||||
|
||||
@ -257,11 +253,9 @@ void Contap_ContAna::Perform (const gp_Cone& C,
|
||||
done = Standard_True;
|
||||
}
|
||||
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Cone& C,
|
||||
const gp_Dir& D,
|
||||
const Standard_Real Angle)
|
||||
|
||||
const gp_Dir& D,
|
||||
const Standard_Real Angle)
|
||||
{
|
||||
done = Standard_False;
|
||||
nbSol = 0;
|
||||
@ -358,13 +352,10 @@ void Contap_ContAna::Perform (const gp_Cone& C,
|
||||
}
|
||||
|
||||
done = Standard_True;
|
||||
|
||||
|
||||
}
|
||||
|
||||
void Contap_ContAna::Perform (const gp_Cone& C,
|
||||
const gp_Pnt& Eye)
|
||||
|
||||
const gp_Pnt& Eye)
|
||||
{
|
||||
done = Standard_False;
|
||||
|
||||
@ -424,10 +415,8 @@ void Contap_ContAna::Perform (const gp_Cone& C,
|
||||
nbSol = 0;
|
||||
}
|
||||
done = Standard_True;
|
||||
|
||||
}
|
||||
|
||||
|
||||
gp_Lin Contap_ContAna::Line (const Standard_Integer Index) const
|
||||
{
|
||||
if (!done) {StdFail_NotDone::Raise();}
|
||||
@ -443,7 +432,6 @@ gp_Lin Contap_ContAna::Line (const Standard_Integer Index) const
|
||||
case 4:
|
||||
return gp_Lin(pt4,dir4);
|
||||
}
|
||||
Standard_OutOfRange::Raise("Erreur de programmation dans Contap_ContAna");
|
||||
Standard_OutOfRange::Raise("Program error in Contap_ContAna");
|
||||
return gp_Lin();
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_ContAna.lxx
|
||||
// Created: Thu Mar 4 10:51:23 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <StdFail_NotDone.hxx>
|
||||
#include <Standard_DomainError.hxx>
|
||||
#include <Standard_OutOfRange.hxx>
|
||||
@ -29,4 +34,3 @@ inline gp_Circ Contap_ContAna::Circle () const
|
||||
if (typL != GeomAbs_Circle || nbSol == 0) {Standard_DomainError::Raise();}
|
||||
return gp_Circ(gp_Ax2(pt1,dir1,dir2),prm);
|
||||
}
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
-- File: Contap_ContourGen.cdl
|
||||
-- Created: Fri Feb 5 09:39:18 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
-- File: Contap_ContourGen.cdl
|
||||
-- Created: Fri Feb 5 09:39:18 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
generic class ContourGen from Contap
|
||||
(TheVertex as any;
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_ContourGen.gxx
|
||||
// Created: Fri Feb 5 09:39:18 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <ElCLib.hxx>
|
||||
|
||||
#include <gp_Pln.hxx>
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_ContourGen.lxx
|
||||
// Created: Fri Feb 5 09:39:18 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <StdFail_NotDone.hxx>
|
||||
|
||||
inline Standard_Boolean Contap_ContourGen::IsDone () const
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_ContourGen_1.gxx
|
||||
// Created: Fri Feb 5 09:39:18 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <Standard_ConstructionError.hxx>
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
//----------------------------------------------
|
||||
//-- C o n t a p _ C o n t o u r _ 2 . g x x --
|
||||
//----------------------------------------------
|
||||
|
||||
// File: Contap_ContourGen_2.gxx
|
||||
// Created: Fri Feb 5 09:39:18 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <math_Vector.hxx>
|
||||
#include <math_Matrix.hxx>
|
||||
@ -128,13 +128,8 @@ static void LineConstructor(Contap_TheSequenceOfLine& slin,
|
||||
Standard_Integer nbvtx = L.NbVertex();
|
||||
//-- cout<<" WLine -> "<<nbvtx<<" vtx"<<endl;
|
||||
for(Standard_Integer i=1;i<nbvtx;i++) {
|
||||
//#ifndef DEB
|
||||
Standard_Integer firstp = (Standard_Integer) L.Vertex(i).ParameterOnLine();
|
||||
Standard_Integer lastp = (Standard_Integer) L.Vertex(i+1).ParameterOnLine();
|
||||
//#else
|
||||
// Standard_Integer firstp = L.Vertex(i).ParameterOnLine();
|
||||
// Standard_Integer lastp = L.Vertex(i+1).ParameterOnLine();
|
||||
//#endif
|
||||
if(firstp!=lastp) {
|
||||
Standard_Integer pmid = (firstp+lastp)/2; //-- entiers
|
||||
const IntSurf_PntOn2S& Pmid = L.Point(pmid);
|
||||
@ -705,11 +700,7 @@ void ProcessSegments (const Contap_TheSearch& solrst,
|
||||
Contap_ThePathPointOfTheSearch PStartf,PStartl;
|
||||
|
||||
Standard_Boolean dofirst,dolast,procf,procl;
|
||||
#ifndef DEB
|
||||
Standard_Real paramf =0.,paraml =0.,U;
|
||||
#else
|
||||
Standard_Real paramf,paraml,U;
|
||||
#endif
|
||||
Contap_TheLine theline;
|
||||
|
||||
gp_Vec tgline;//,norm1,norm2;
|
||||
@ -853,11 +844,7 @@ void ComputeInternalPointsOnRstr
|
||||
gp_Pnt pcour;
|
||||
gp_Pnt2d p2d;
|
||||
gp_Vec2d d2d;
|
||||
Standard_Boolean found,ok
|
||||
#ifndef DEB
|
||||
= Standard_False
|
||||
#endif
|
||||
,toutvu,solution;
|
||||
Standard_Boolean found,ok = Standard_False,toutvu,solution;
|
||||
Standard_Real paramp,paraminf,paramsup,toler;
|
||||
|
||||
if (Line.TypeContour() != Contap_Restriction) {
|
||||
@ -1003,17 +990,8 @@ void ComputeInternalPoints
|
||||
Standard_Integer indexinf,indexsup,index;
|
||||
gp_Vec tgt, vecref, vectest, vtestb, vecregard;
|
||||
//gp_Pnt pprec,pcour;
|
||||
Standard_Boolean found,ok
|
||||
#ifndef DEB
|
||||
= Standard_False
|
||||
#endif
|
||||
,toutvu,solution;
|
||||
|
||||
Standard_Real paramp
|
||||
#ifndef DEB
|
||||
= Standard_False
|
||||
#endif
|
||||
,U,V;
|
||||
Standard_Boolean found,ok = Standard_False,toutvu,solution;
|
||||
Standard_Real paramp = 0.,U,V;
|
||||
|
||||
math_Vector XInf(1,2),XSup(1,2),X(1,2),F(1,1);
|
||||
math_Matrix DF(1,1,1,2);
|
||||
|
@ -1,4 +1,7 @@
|
||||
//-- Contap_ContourGen_3.gxx
|
||||
// File: Contap_ContourGen_3.gxx
|
||||
// Created: Fri Feb 5 09:39:18 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#define Tolpetit 1.e-10 // pour dist au carre
|
||||
#include <ElSLib.hxx>
|
||||
@ -151,10 +154,8 @@ IntSurf_TypeTrans ComputeTransitionOngpLine
|
||||
ElSLib::Parameters(TheSurfaceTool::Sphere(Surf),P,u,v);
|
||||
break;
|
||||
}
|
||||
#ifndef DEB
|
||||
default:
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
return(ComputeTransitionOnLine(SFunc,u,v,T));
|
||||
}
|
||||
@ -183,13 +184,10 @@ IntSurf_TypeTrans ComputeTransitionOngpCircle
|
||||
ElSLib::Parameters(TheSurfaceTool::Sphere(Surf),P,u,v);
|
||||
break;
|
||||
}
|
||||
#ifndef DEB
|
||||
default:
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
return(ComputeTransitionOnLine(SFunc,u,v,T));
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -334,10 +332,8 @@ void Contap_ContourGen::PerformAna(const Handle(TheTopolTool)& Domain)
|
||||
{
|
||||
}
|
||||
}
|
||||
#ifndef DEB
|
||||
default:
|
||||
break;
|
||||
#endif
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -1,10 +1,7 @@
|
||||
//-- File: Contap_HContToolGen.cdl
|
||||
//-- Created: Fri Jul 2 13:19:22 1995
|
||||
//-- Author: Laurent BUCHARD
|
||||
//-- <lbr@mastox>
|
||||
//---Copyright: Matra Datavision 1995
|
||||
|
||||
|
||||
// File: Contap_HContToolGen.gxx
|
||||
// Created: Fri Jul 2 13:19:22 1995
|
||||
// Author: Laurent BUCHARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <Extrema_EPCOfExtPC2d.hxx>
|
||||
#include <Extrema_POnCurv2d.hxx>
|
||||
@ -248,11 +245,7 @@ Standard_Integer Contap_HContToolGen::NbSamplesOnArc
|
||||
default:
|
||||
nbsOnC = 10;
|
||||
}
|
||||
//#ifndef DEB
|
||||
return (Standard_Integer)(nbsOnC);
|
||||
//#else
|
||||
// return(nbsOnC);
|
||||
//#endif
|
||||
}
|
||||
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: Contap_HCurve2dToolGen.cdl
|
||||
-- Created: Mon Jul 17 16:25:23 1995
|
||||
-- Author: Laurent BUCHARD
|
||||
-- <lbr@mastox>
|
||||
---Copyright: Matra Datavision 1995
|
||||
-- File: Contap_HCurve2dToolGen.cdl
|
||||
-- Created: Mon Jul 17 16:25:23 1995
|
||||
-- Author: Laurent BUCHARD
|
||||
---Copyright: Matra Datavision 1995
|
||||
|
||||
|
||||
generic class HCurve2dToolGen from Contap (
|
||||
@ -223,5 +222,3 @@ is
|
||||
returns Integer from Standard;
|
||||
|
||||
end HCurve2dToolGen;
|
||||
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: Contap_HCurve2dToolGen.gxx
|
||||
// Created: Mon Jul 17 17:39:39 1995
|
||||
// Author: Modelistation
|
||||
// <model@mastox>
|
||||
// File: Contap_HCurve2dToolGen.gxx
|
||||
// Created: Mon Jul 17 17:39:39 1995
|
||||
// Author: Modelistation
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include CurveGen_hxx
|
||||
#include <GeomAbs_CurveType.hxx>
|
||||
@ -11,27 +11,29 @@
|
||||
|
||||
#include <TColStd_Array1OfReal.hxx>
|
||||
|
||||
|
||||
//============================================================
|
||||
Standard_Integer Contap_HCurve2dToolGen::NbSamples (const CurveGen& C,
|
||||
const Standard_Real U0,
|
||||
const Standard_Real U1) {
|
||||
GeomAbs_CurveType typC = C->GetType();
|
||||
static Standard_Real nbsOther = 10.0;
|
||||
Standard_Real nbs = nbsOther;
|
||||
|
||||
if(typC == GeomAbs_Line)
|
||||
nbs = 2;
|
||||
else if(typC == GeomAbs_BezierCurve)
|
||||
nbs = 3 + C->NbPoles();
|
||||
else if(typC == GeomAbs_BSplineCurve) {
|
||||
nbs = C->NbKnots();
|
||||
nbs*= C->Degree();
|
||||
nbs*= C->LastParameter()- C->FirstParameter();
|
||||
nbs/= U1-U0;
|
||||
if(nbs < 2.0) nbs=2;
|
||||
const Standard_Real U0,
|
||||
const Standard_Real U1)
|
||||
{
|
||||
Standard_Real nbs = 10.0;
|
||||
switch (C->GetType())
|
||||
{
|
||||
case GeomAbs_Line:
|
||||
nbs = 2.;
|
||||
break;
|
||||
case GeomAbs_BezierCurve:
|
||||
nbs = 3. + C->NbPoles();
|
||||
break;
|
||||
case GeomAbs_BSplineCurve:
|
||||
nbs = C->NbKnots();
|
||||
nbs*= C->Degree();
|
||||
nbs*= C->LastParameter()- C->FirstParameter();
|
||||
nbs/= U1-U0;
|
||||
if(nbs < 2.0) nbs = 2.;
|
||||
break;
|
||||
}
|
||||
if(nbs>50)
|
||||
nbs = 50;
|
||||
if (nbs>50.)
|
||||
nbs = 50.;
|
||||
return((Standard_Integer)nbs);
|
||||
}
|
||||
|
@ -1,8 +1,7 @@
|
||||
// File: Contap_HCurve2dToolGen.lxx
|
||||
// Created: Thu Oct 22 12:14:59 1992
|
||||
// Author: Laurent BUCHARD
|
||||
// <lbr@sdsun2>
|
||||
|
||||
// File: Contap_HCurve2dToolGen.lxx
|
||||
// Created: Thu Oct 22 12:14:59 1992
|
||||
// Author: Laurent BUCHARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include CurveGen_hxx
|
||||
|
||||
@ -138,17 +137,3 @@ inline Handle(Geom2d_BSplineCurve) Contap_HCurve2dToolGen::BSpline (const CurveG
|
||||
return(C->BSpline());
|
||||
}
|
||||
//============================================================
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
-- File: Contap_Line.cdl
|
||||
-- Created: Fri Feb 5 12:13:00 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
-- File: Contap_Line.cdl
|
||||
-- Created: Fri Feb 5 12:13:00 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
generic class Line from Contap
|
||||
(TheVertex as any;
|
||||
|
@ -1,6 +1,7 @@
|
||||
//--------------------------------------------------
|
||||
//-- C o n t a p _ L i n e . g x x --
|
||||
//--------------------------------------------------
|
||||
// File: Contap_Line.gxx
|
||||
// Created: Fri Feb 5 12:13:00 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
Contap_Line::Contap_Line () {
|
||||
svtx = new TheHSequenceOfPoint ();
|
||||
@ -11,8 +12,6 @@ void Contap_Line::ResetSeqOfVertex() {
|
||||
svtx = new TheHSequenceOfPoint ();
|
||||
}
|
||||
|
||||
|
||||
|
||||
void Contap_Line::Add(const ThePoint& P) {
|
||||
Standard_Integer n = svtx->Length();
|
||||
if(n==0) {
|
||||
@ -35,9 +34,6 @@ void Contap_Line::Add(const ThePoint& P) {
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
void Contap_Line::Clear () {
|
||||
if(!curv.IsNull())
|
||||
curv->Clear();
|
||||
@ -80,10 +76,8 @@ IntSurf_TypeTrans Contap_Line::TransitionOnS() const {
|
||||
return(Trans);
|
||||
}
|
||||
|
||||
|
||||
const TheArc& Contap_Line::Arc () const
|
||||
{
|
||||
if (typL != Contap_Restriction) {Standard_DomainError::Raise();}
|
||||
return thearc;
|
||||
}
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_Line.lxx
|
||||
// Created: Fri Feb 5 12:13:00 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <Standard_DomainError.hxx>
|
||||
#include <TColgp_HSequenceOfPnt.hxx>
|
||||
#include <gp_Lin.hxx>
|
||||
@ -5,7 +10,6 @@
|
||||
#include <IntSurf_PntOn2S.hxx>
|
||||
#include <IntSurf_LineOn2S.hxx>
|
||||
|
||||
|
||||
#include TheHSequenceOfPoint_hxx
|
||||
|
||||
inline const Handle(IntSurf_LineOn2S)& Contap_Line::LineOn2S () const
|
||||
@ -54,4 +58,3 @@ inline gp_Circ Contap_Line::Circle () const
|
||||
if (typL != Contap_Circle) {Standard_DomainError::Raise();}
|
||||
return gp_Circ(gp_Ax2(pt,dir1,dir2),rad);
|
||||
}
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
-- File: Contap_Point.cdl
|
||||
-- Created: Thu Mar 4 17:22:45 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@form4>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
-- File: Contap_Point.cdl
|
||||
-- Created: Thu Mar 4 17:22:45 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
generic class Point from Contap
|
||||
(TheVertex as any;
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_Point.gxx
|
||||
// Created: Thu Mar 4 17:22:45 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
Contap_Point::Contap_Point ():
|
||||
onarc(Standard_False),isvtx(Standard_False),ismult(Standard_False),
|
||||
myInternal(Standard_False)
|
||||
@ -9,4 +14,3 @@ Contap_Point::Contap_Point (const gp_Pnt& Pt,
|
||||
pt(Pt),uparam(U),vparam(V),onarc(Standard_False),isvtx(Standard_False),
|
||||
ismult(Standard_False),myInternal(Standard_False)
|
||||
{}
|
||||
|
||||
|
@ -1,5 +1,9 @@
|
||||
#include <Standard_DomainError.hxx>
|
||||
// File: Contap_Point.lxx
|
||||
// Created: Thu Mar 4 17:22:45 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <Standard_DomainError.hxx>
|
||||
|
||||
inline void Contap_Point::SetValue (const gp_Pnt& Pt,
|
||||
const Standard_Real U,
|
||||
@ -112,4 +116,3 @@ inline const TheVertex& Contap_Point::Vertex () const {
|
||||
if (!isvtx) {Standard_DomainError::Raise();}
|
||||
return vtx;
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: Contap_SurfFunction.cdl
|
||||
-- Created: Thu Jun 3 15:23:20 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: Contap_SurfFunction.cdl
|
||||
-- Created: Thu Jun 3 15:23:20 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
generic class SurfFunction from Contap
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_SurfFunction.gxx
|
||||
// Created: Thu Jun 3 15:23:20 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
// jag 940616 #define Tolpetit 1.e-16
|
||||
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
// File: Contap_SurfFunction.lxx
|
||||
// Created: Thu Jun 3 15:23:20 1993
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <StdFail_UndefinedDerivative.hxx>
|
||||
|
||||
inline void Contap_SurfFunction::Set(const gp_Pnt& Eye)
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: Contap_SurfProps.cdl
|
||||
-- Created: Fri Feb 24 15:30:15 1995
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1995
|
||||
-- File: Contap_SurfProps.cdl
|
||||
-- Created: Fri Feb 24 15:30:15 1995
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1995
|
||||
|
||||
|
||||
generic class SurfProps from Contap
|
||||
|
@ -1,8 +1,7 @@
|
||||
// File: Contap_SurfProps.gxx
|
||||
// Created: Fri Feb 24 15:37:28 1995
|
||||
// Author: Jacques GOUSSARD
|
||||
// <jag@topsn2>
|
||||
|
||||
// File: Contap_SurfProps.gxx
|
||||
// Created: Fri Feb 24 15:37:28 1995
|
||||
// Author: Jacques GOUSSARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <ElSLib.hxx>
|
||||
|
||||
@ -321,4 +320,3 @@ void Contap_SurfProps::NormAndDn(const TheSurface& S,
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,9 +1,7 @@
|
||||
-- File: Contap_SurfaceTool.cdl
|
||||
-- Created: Wed May 12 09:11:00 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
-- File: Contap_SurfaceTool.cdl
|
||||
-- Created: Wed May 12 09:11:00 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
deferred generic class SurfaceTool from Contap
|
||||
|
@ -1,9 +1,7 @@
|
||||
-- File: Contap_TopolTool.cdl
|
||||
-- Created: Wed May 12 09:16:05 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
-- <jag@topsn2>
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
-- File: Contap_TopolTool.cdl
|
||||
-- Created: Wed May 12 09:16:05 1993
|
||||
-- Author: Jacques GOUSSARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
deferred generic class TopolTool from Contap
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo.cdl
|
||||
-- Created: Tue Feb 18 17:18:30 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo.cdl
|
||||
-- Created: Tue Feb 18 17:18:30 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
package HLRAlgo
|
||||
--- Purpose: In order to have the precision required in
|
||||
|
@ -1,24 +1,24 @@
|
||||
// File: HLRAlgo.cxx
|
||||
// Created: Tue Sep 12 17:05:53 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo.cxx
|
||||
// Created: Tue Sep 12 17:05:53 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo.ixx>
|
||||
|
||||
static Standard_Real cosu0 = cos(0*PI/14);
|
||||
static Standard_Real sinu0 = sin(0*PI/14);
|
||||
static Standard_Real cosu1 = cos(1*PI/14);
|
||||
static Standard_Real sinu1 = sin(1*PI/14);
|
||||
static Standard_Real cosu2 = cos(2*PI/14);
|
||||
static Standard_Real sinu2 = sin(2*PI/14);
|
||||
static Standard_Real cosu3 = cos(3*PI/14);
|
||||
static Standard_Real sinu3 = sin(3*PI/14);
|
||||
static Standard_Real cosu4 = cos(4*PI/14);
|
||||
static Standard_Real sinu4 = sin(4*PI/14);
|
||||
static Standard_Real cosu5 = cos(5*PI/14);
|
||||
static Standard_Real sinu5 = sin(5*PI/14);
|
||||
static Standard_Real cosu6 = cos(6*PI/14);
|
||||
static Standard_Real sinu6 = sin(6*PI/14);
|
||||
static const Standard_Real cosu0 = cos(0.*PI/14.);
|
||||
static const Standard_Real sinu0 = sin(0.*PI/14.);
|
||||
static const Standard_Real cosu1 = cos(1.*PI/14.);
|
||||
static const Standard_Real sinu1 = sin(1.*PI/14.);
|
||||
static const Standard_Real cosu2 = cos(2.*PI/14.);
|
||||
static const Standard_Real sinu2 = sin(2.*PI/14.);
|
||||
static const Standard_Real cosu3 = cos(3.*PI/14.);
|
||||
static const Standard_Real sinu3 = sin(3.*PI/14.);
|
||||
static const Standard_Real cosu4 = cos(4.*PI/14.);
|
||||
static const Standard_Real sinu4 = sin(4.*PI/14.);
|
||||
static const Standard_Real cosu5 = cos(5.*PI/14.);
|
||||
static const Standard_Real sinu5 = sin(5.*PI/14.);
|
||||
static const Standard_Real cosu6 = cos(6.*PI/14.);
|
||||
static const Standard_Real sinu6 = sin(6.*PI/14.);
|
||||
|
||||
//=======================================================================
|
||||
//function : UpdateMinMax
|
||||
@ -26,62 +26,36 @@ static Standard_Real sinu6 = sin(6*PI/14);
|
||||
//=======================================================================
|
||||
|
||||
void HLRAlgo::UpdateMinMax (const Standard_Real x,
|
||||
const Standard_Real y,
|
||||
const Standard_Real z,
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
const Standard_Real y,
|
||||
const Standard_Real z,
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
{
|
||||
Standard_Real d00,d01,d02,d03,d04,d05,d06,d07;
|
||||
Standard_Real d08,d09,d10,d11,d12,d13,d14,d15;
|
||||
d00 = cosu0 * x + sinu0 * y;
|
||||
d01 = sinu0 * x - cosu0 * y;
|
||||
d02 = cosu1 * x + sinu1 * y;
|
||||
d03 = sinu1 * x - cosu1 * y;
|
||||
d04 = cosu2 * x + sinu2 * y;
|
||||
d05 = sinu2 * x - cosu2 * y;
|
||||
d06 = cosu3 * x + sinu3 * y;
|
||||
d07 = sinu3 * x - cosu3 * y;
|
||||
d08 = cosu4 * x + sinu4 * y;
|
||||
d09 = sinu4 * x - cosu4 * y;
|
||||
d10 = cosu5 * x + sinu5 * y;
|
||||
d11 = sinu5 * x - cosu5 * y;
|
||||
d12 = cosu6 * x + sinu6 * y;
|
||||
d13 = sinu6 * x - cosu6 * y;
|
||||
d14 = z;
|
||||
d15 = z;
|
||||
Standard_Real d[16];
|
||||
d[ 0] = cosu0 * x + sinu0 * y;
|
||||
d[ 1] = sinu0 * x - cosu0 * y;
|
||||
d[ 2] = cosu1 * x + sinu1 * y;
|
||||
d[ 3] = sinu1 * x - cosu1 * y;
|
||||
d[ 4] = cosu2 * x + sinu2 * y;
|
||||
d[ 5] = sinu2 * x - cosu2 * y;
|
||||
d[ 6] = cosu3 * x + sinu3 * y;
|
||||
d[ 7] = sinu3 * x - cosu3 * y;
|
||||
d[ 8] = cosu4 * x + sinu4 * y;
|
||||
d[ 9] = sinu4 * x - cosu4 * y;
|
||||
d[10] = cosu5 * x + sinu5 * y;
|
||||
d[11] = sinu5 * x - cosu5 * y;
|
||||
d[12] = cosu6 * x + sinu6 * y;
|
||||
d[13] = sinu6 * x - cosu6 * y;
|
||||
d[14] = z;
|
||||
d[15] = z;
|
||||
|
||||
if (((Standard_Real*)Min)[ 0] > d00) ((Standard_Real*)Min) [ 0] = d00;
|
||||
if (((Standard_Real*)Max)[ 0] < d00) ((Standard_Real*)Max) [ 0] = d00;
|
||||
if (((Standard_Real*)Min)[ 1] > d01) ((Standard_Real*)Min) [ 1] = d01;
|
||||
if (((Standard_Real*)Max)[ 1] < d01) ((Standard_Real*)Max) [ 1] = d01;
|
||||
if (((Standard_Real*)Min)[ 2] > d02) ((Standard_Real*)Min) [ 2] = d02;
|
||||
if (((Standard_Real*)Max)[ 2] < d02) ((Standard_Real*)Max) [ 2] = d02;
|
||||
if (((Standard_Real*)Min)[ 3] > d03) ((Standard_Real*)Min) [ 3] = d03;
|
||||
if (((Standard_Real*)Max)[ 3] < d03) ((Standard_Real*)Max) [ 3] = d03;
|
||||
if (((Standard_Real*)Min)[ 4] > d04) ((Standard_Real*)Min) [ 4] = d04;
|
||||
if (((Standard_Real*)Max)[ 4] < d04) ((Standard_Real*)Max) [ 4] = d04;
|
||||
if (((Standard_Real*)Min)[ 5] > d05) ((Standard_Real*)Min) [ 5] = d05;
|
||||
if (((Standard_Real*)Max)[ 5] < d05) ((Standard_Real*)Max) [ 5] = d05;
|
||||
if (((Standard_Real*)Min)[ 6] > d06) ((Standard_Real*)Min) [ 6] = d06;
|
||||
if (((Standard_Real*)Max)[ 6] < d06) ((Standard_Real*)Max) [ 6] = d06;
|
||||
if (((Standard_Real*)Min)[ 7] > d07) ((Standard_Real*)Min) [ 7] = d07;
|
||||
if (((Standard_Real*)Max)[ 7] < d07) ((Standard_Real*)Max) [ 7] = d07;
|
||||
if (((Standard_Real*)Min)[ 8] > d08) ((Standard_Real*)Min) [ 8] = d08;
|
||||
if (((Standard_Real*)Max)[ 8] < d08) ((Standard_Real*)Max) [ 8] = d08;
|
||||
if (((Standard_Real*)Min)[ 9] > d09) ((Standard_Real*)Min) [ 9] = d09;
|
||||
if (((Standard_Real*)Max)[ 9] < d09) ((Standard_Real*)Max) [ 9] = d09;
|
||||
if (((Standard_Real*)Min)[10] > d10) ((Standard_Real*)Min) [10] = d10;
|
||||
if (((Standard_Real*)Max)[10] < d10) ((Standard_Real*)Max) [10] = d10;
|
||||
if (((Standard_Real*)Min)[11] > d11) ((Standard_Real*)Min) [11] = d11;
|
||||
if (((Standard_Real*)Max)[11] < d11) ((Standard_Real*)Max) [11] = d11;
|
||||
if (((Standard_Real*)Min)[12] > d12) ((Standard_Real*)Min) [12] = d12;
|
||||
if (((Standard_Real*)Max)[12] < d12) ((Standard_Real*)Max) [12] = d12;
|
||||
if (((Standard_Real*)Min)[13] > d13) ((Standard_Real*)Min) [13] = d13;
|
||||
if (((Standard_Real*)Max)[13] < d13) ((Standard_Real*)Max) [13] = d13;
|
||||
if (((Standard_Real*)Min)[14] > d14) ((Standard_Real*)Min) [14] = d14;
|
||||
if (((Standard_Real*)Max)[14] < d14) ((Standard_Real*)Max) [14] = d14;
|
||||
if (((Standard_Real*)Min)[15] > d15) ((Standard_Real*)Min) [15] = d15;
|
||||
if (((Standard_Real*)Max)[15] < d15) ((Standard_Real*)Max) [15] = d15;
|
||||
Standard_Integer i = 0;
|
||||
while (i < 16)
|
||||
{
|
||||
if (((Standard_Real*)Min)[i] > d[i]) ((Standard_Real*)Min)[i] = d[i];
|
||||
if (((Standard_Real*)Max)[i] < d[i]) ((Standard_Real*)Max)[i] = d[i];
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -90,41 +64,16 @@ void HLRAlgo::UpdateMinMax (const Standard_Real x,
|
||||
//=======================================================================
|
||||
|
||||
void HLRAlgo::EnlargeMinMax (const Standard_Real tol,
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
{
|
||||
((Standard_Real*)Min)[ 0] -= tol;
|
||||
((Standard_Real*)Max)[ 0] += tol;
|
||||
((Standard_Real*)Min)[ 1] -= tol;
|
||||
((Standard_Real*)Max)[ 1] += tol;
|
||||
((Standard_Real*)Min)[ 2] -= tol;
|
||||
((Standard_Real*)Max)[ 2] += tol;
|
||||
((Standard_Real*)Min)[ 3] -= tol;
|
||||
((Standard_Real*)Max)[ 3] += tol;
|
||||
((Standard_Real*)Min)[ 4] -= tol;
|
||||
((Standard_Real*)Max)[ 4] += tol;
|
||||
((Standard_Real*)Min)[ 5] -= tol;
|
||||
((Standard_Real*)Max)[ 5] += tol;
|
||||
((Standard_Real*)Min)[ 6] -= tol;
|
||||
((Standard_Real*)Max)[ 6] += tol;
|
||||
((Standard_Real*)Min)[ 7] -= tol;
|
||||
((Standard_Real*)Max)[ 7] += tol;
|
||||
((Standard_Real*)Min)[ 8] -= tol;
|
||||
((Standard_Real*)Max)[ 8] += tol;
|
||||
((Standard_Real*)Min)[ 9] -= tol;
|
||||
((Standard_Real*)Max)[ 9] += tol;
|
||||
((Standard_Real*)Min)[10] -= tol;
|
||||
((Standard_Real*)Max)[10] += tol;
|
||||
((Standard_Real*)Min)[11] -= tol;
|
||||
((Standard_Real*)Max)[11] += tol;
|
||||
((Standard_Real*)Min)[12] -= tol;
|
||||
((Standard_Real*)Max)[12] += tol;
|
||||
((Standard_Real*)Min)[13] -= tol;
|
||||
((Standard_Real*)Max)[13] += tol;
|
||||
((Standard_Real*)Min)[14] -= tol;
|
||||
((Standard_Real*)Max)[14] += tol;
|
||||
((Standard_Real*)Min)[15] -= tol;
|
||||
((Standard_Real*)Max)[15] += tol;
|
||||
Standard_Integer i = 0;
|
||||
while (i < 16)
|
||||
{
|
||||
((Standard_Real*)Min)[i] -= tol;
|
||||
((Standard_Real*)Max)[i] += tol;
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -133,41 +82,16 @@ void HLRAlgo::EnlargeMinMax (const Standard_Real tol,
|
||||
//=======================================================================
|
||||
|
||||
void HLRAlgo::InitMinMax (const Standard_Real Big,
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
{
|
||||
((Standard_Real*)Min)[ 0] =
|
||||
((Standard_Real*)Min)[ 1] =
|
||||
((Standard_Real*)Min)[ 2] =
|
||||
((Standard_Real*)Min)[ 3] =
|
||||
((Standard_Real*)Min)[ 4] =
|
||||
((Standard_Real*)Min)[ 5] =
|
||||
((Standard_Real*)Min)[ 6] =
|
||||
((Standard_Real*)Min)[ 7] =
|
||||
((Standard_Real*)Min)[ 8] =
|
||||
((Standard_Real*)Min)[ 9] =
|
||||
((Standard_Real*)Min)[10] =
|
||||
((Standard_Real*)Min)[11] =
|
||||
((Standard_Real*)Min)[12] =
|
||||
((Standard_Real*)Min)[13] =
|
||||
((Standard_Real*)Min)[14] =
|
||||
((Standard_Real*)Min)[15] = Big;
|
||||
((Standard_Real*)Max)[ 0] =
|
||||
((Standard_Real*)Max)[ 1] =
|
||||
((Standard_Real*)Max)[ 2] =
|
||||
((Standard_Real*)Max)[ 3] =
|
||||
((Standard_Real*)Max)[ 4] =
|
||||
((Standard_Real*)Max)[ 5] =
|
||||
((Standard_Real*)Max)[ 6] =
|
||||
((Standard_Real*)Max)[ 7] =
|
||||
((Standard_Real*)Max)[ 8] =
|
||||
((Standard_Real*)Max)[ 9] =
|
||||
((Standard_Real*)Max)[10] =
|
||||
((Standard_Real*)Max)[11] =
|
||||
((Standard_Real*)Max)[12] =
|
||||
((Standard_Real*)Max)[13] =
|
||||
((Standard_Real*)Max)[14] =
|
||||
((Standard_Real*)Max)[15] = -Big;
|
||||
Standard_Integer i = 0;
|
||||
while (i < 16)
|
||||
{
|
||||
((Standard_Real*)Min)[i] = Big;
|
||||
((Standard_Real*)Max)[i] = -Big;
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -176,8 +100,8 @@ void HLRAlgo::InitMinMax (const Standard_Real Big,
|
||||
//=======================================================================
|
||||
|
||||
void HLRAlgo::EncodeMinMax (const Standard_Address Min,
|
||||
const Standard_Address Max,
|
||||
const Standard_Address MM)
|
||||
const Standard_Address Max,
|
||||
const Standard_Address MM)
|
||||
{
|
||||
((Standard_Integer*)MM)[ 0] = ((Standard_Integer*)Min)[ 1]&0x00007fff;
|
||||
((Standard_Integer*)MM)[ 8] = ((Standard_Integer*)Max)[ 1]&0x00007fff;
|
||||
@ -218,24 +142,16 @@ void HLRAlgo::EncodeMinMax (const Standard_Address Min,
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
|
||||
Standard_Real HLRAlgo::SizeBox(const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
Standard_Real HLRAlgo::SizeBox(const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
{
|
||||
Standard_Real s;
|
||||
s = ((Standard_Integer *)Max)[ 0] - ((Standard_Integer *)Min)[ 0];
|
||||
s *= ((Standard_Integer *)Max)[ 1] - ((Standard_Integer *)Min)[ 1];
|
||||
s *= ((Standard_Integer *)Max)[ 2] - ((Standard_Integer *)Min)[ 2];
|
||||
s *= ((Standard_Integer *)Max)[ 3] - ((Standard_Integer *)Min)[ 3];
|
||||
s *= ((Standard_Integer *)Max)[ 4] - ((Standard_Integer *)Min)[ 4];
|
||||
s *= ((Standard_Integer *)Max)[ 5] - ((Standard_Integer *)Min)[ 5];
|
||||
s *= ((Standard_Integer *)Max)[ 6] - ((Standard_Integer *)Min)[ 6];
|
||||
s *= ((Standard_Integer *)Max)[ 7] - ((Standard_Integer *)Min)[ 7];
|
||||
s *= ((Standard_Integer *)Max)[ 8] - ((Standard_Integer *)Min)[ 8];
|
||||
s *= ((Standard_Integer *)Max)[ 9] - ((Standard_Integer *)Min)[ 9];
|
||||
s *= ((Standard_Integer *)Max)[10] - ((Standard_Integer *)Min)[10];
|
||||
s *= ((Standard_Integer *)Max)[11] - ((Standard_Integer *)Min)[11];
|
||||
s *= ((Standard_Integer *)Max)[12] - ((Standard_Integer *)Min)[12];
|
||||
s *= ((Standard_Integer *)Max)[13] - ((Standard_Integer *)Min)[13];
|
||||
Standard_Real s = ((Standard_Integer *)Max)[0] - ((Standard_Integer *)Min)[0];
|
||||
Standard_Integer i = 1;
|
||||
while (i < 14)
|
||||
{
|
||||
s *= ((Standard_Integer *)Max)[i] - ((Standard_Integer *)Min)[i];
|
||||
i++;
|
||||
}
|
||||
return s;
|
||||
}
|
||||
|
||||
@ -245,8 +161,8 @@ Standard_Real HLRAlgo::SizeBox(const Standard_Address Min,
|
||||
//=======================================================================
|
||||
|
||||
void HLRAlgo::DecodeMinMax (const Standard_Address MM,
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
const Standard_Address Min,
|
||||
const Standard_Address Max)
|
||||
{
|
||||
((Standard_Integer*)Min)[ 0]=(((Standard_Integer*)MM)[ 0]&0x7fff0000)>>16;
|
||||
((Standard_Integer*)Max)[ 0]=(((Standard_Integer*)MM)[ 8]&0x7fff0000)>>16;
|
||||
@ -288,42 +204,17 @@ void HLRAlgo::DecodeMinMax (const Standard_Address MM,
|
||||
//=======================================================================
|
||||
|
||||
void HLRAlgo::CopyMinMax (const Standard_Address IMin,
|
||||
const Standard_Address IMax,
|
||||
const Standard_Address OMin,
|
||||
const Standard_Address OMax)
|
||||
const Standard_Address IMax,
|
||||
const Standard_Address OMin,
|
||||
const Standard_Address OMax)
|
||||
{
|
||||
((Standard_Integer*)OMin)[ 0]=((Standard_Integer*)IMin)[ 0];
|
||||
((Standard_Integer*)OMax)[ 0]=((Standard_Integer*)IMax)[ 0];
|
||||
((Standard_Integer*)OMin)[ 1]=((Standard_Integer*)IMin)[ 1];
|
||||
((Standard_Integer*)OMax)[ 1]=((Standard_Integer*)IMax)[ 1];
|
||||
((Standard_Integer*)OMin)[ 2]=((Standard_Integer*)IMin)[ 2];
|
||||
((Standard_Integer*)OMax)[ 2]=((Standard_Integer*)IMax)[ 2];
|
||||
((Standard_Integer*)OMin)[ 3]=((Standard_Integer*)IMin)[ 3];
|
||||
((Standard_Integer*)OMax)[ 3]=((Standard_Integer*)IMax)[ 3];
|
||||
((Standard_Integer*)OMin)[ 4]=((Standard_Integer*)IMin)[ 4];
|
||||
((Standard_Integer*)OMax)[ 4]=((Standard_Integer*)IMax)[ 4];
|
||||
((Standard_Integer*)OMin)[ 5]=((Standard_Integer*)IMin)[ 5];
|
||||
((Standard_Integer*)OMax)[ 5]=((Standard_Integer*)IMax)[ 5];
|
||||
((Standard_Integer*)OMin)[ 6]=((Standard_Integer*)IMin)[ 6];
|
||||
((Standard_Integer*)OMax)[ 6]=((Standard_Integer*)IMax)[ 6];
|
||||
((Standard_Integer*)OMin)[ 7]=((Standard_Integer*)IMin)[ 7];
|
||||
((Standard_Integer*)OMax)[ 7]=((Standard_Integer*)IMax)[ 7];
|
||||
((Standard_Integer*)OMin)[ 8]=((Standard_Integer*)IMin)[ 8];
|
||||
((Standard_Integer*)OMax)[ 8]=((Standard_Integer*)IMax)[ 8];
|
||||
((Standard_Integer*)OMin)[ 9]=((Standard_Integer*)IMin)[ 9];
|
||||
((Standard_Integer*)OMax)[ 9]=((Standard_Integer*)IMax)[ 9];
|
||||
((Standard_Integer*)OMin)[10]=((Standard_Integer*)IMin)[10];
|
||||
((Standard_Integer*)OMax)[10]=((Standard_Integer*)IMax)[10];
|
||||
((Standard_Integer*)OMin)[11]=((Standard_Integer*)IMin)[11];
|
||||
((Standard_Integer*)OMax)[11]=((Standard_Integer*)IMax)[11];
|
||||
((Standard_Integer*)OMin)[12]=((Standard_Integer*)IMin)[12];
|
||||
((Standard_Integer*)OMax)[12]=((Standard_Integer*)IMax)[12];
|
||||
((Standard_Integer*)OMin)[13]=((Standard_Integer*)IMin)[13];
|
||||
((Standard_Integer*)OMax)[13]=((Standard_Integer*)IMax)[13];
|
||||
((Standard_Integer*)OMin)[14]=((Standard_Integer*)IMin)[14];
|
||||
((Standard_Integer*)OMax)[14]=((Standard_Integer*)IMax)[14];
|
||||
((Standard_Integer*)OMin)[15]=((Standard_Integer*)IMin)[15];
|
||||
((Standard_Integer*)OMax)[15]=((Standard_Integer*)IMax)[15];
|
||||
Standard_Integer i = 0;
|
||||
while (i < 16)
|
||||
{
|
||||
((Standard_Integer*)OMin)[i]=((Standard_Integer*)IMin)[i];
|
||||
((Standard_Integer*)OMax)[i]=((Standard_Integer*)IMax)[i];
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -332,73 +223,17 @@ void HLRAlgo::CopyMinMax (const Standard_Address IMin,
|
||||
//=======================================================================
|
||||
|
||||
void HLRAlgo::AddMinMax (const Standard_Address IMin,
|
||||
const Standard_Address IMax,
|
||||
const Standard_Address OMin,
|
||||
const Standard_Address OMax)
|
||||
const Standard_Address IMax,
|
||||
const Standard_Address OMin,
|
||||
const Standard_Address OMax)
|
||||
{
|
||||
if (((Standard_Integer*)OMin)[ 0] > ((Standard_Integer*)IMin)[ 0])
|
||||
((Standard_Integer*)OMin)[ 0]=((Standard_Integer*)IMin)[ 0];
|
||||
if (((Standard_Integer*)OMax)[ 0] < ((Standard_Integer*)IMax)[ 0])
|
||||
((Standard_Integer*)OMax)[ 0]=((Standard_Integer*)IMax)[ 0];
|
||||
if (((Standard_Integer*)OMin)[ 1] > ((Standard_Integer*)IMin)[ 1])
|
||||
((Standard_Integer*)OMin)[ 1]=((Standard_Integer*)IMin)[ 1];
|
||||
if (((Standard_Integer*)OMax)[ 1] < ((Standard_Integer*)IMax)[ 1])
|
||||
((Standard_Integer*)OMax)[ 1]=((Standard_Integer*)IMax)[ 1];
|
||||
if (((Standard_Integer*)OMin)[ 2] > ((Standard_Integer*)IMin)[ 2])
|
||||
((Standard_Integer*)OMin)[ 2]=((Standard_Integer*)IMin)[ 2];
|
||||
if (((Standard_Integer*)OMax)[ 2] < ((Standard_Integer*)IMax)[ 2])
|
||||
((Standard_Integer*)OMax)[ 2]=((Standard_Integer*)IMax)[ 2];
|
||||
if (((Standard_Integer*)OMin)[ 3] > ((Standard_Integer*)IMin)[ 3])
|
||||
((Standard_Integer*)OMin)[ 3]=((Standard_Integer*)IMin)[ 3];
|
||||
if (((Standard_Integer*)OMax)[ 3] < ((Standard_Integer*)IMax)[ 3])
|
||||
((Standard_Integer*)OMax)[ 3]=((Standard_Integer*)IMax)[ 3];
|
||||
if (((Standard_Integer*)OMin)[ 4] > ((Standard_Integer*)IMin)[ 4])
|
||||
((Standard_Integer*)OMin)[ 4]=((Standard_Integer*)IMin)[ 4];
|
||||
if (((Standard_Integer*)OMax)[ 4] < ((Standard_Integer*)IMax)[ 4])
|
||||
((Standard_Integer*)OMax)[ 4]=((Standard_Integer*)IMax)[ 4];
|
||||
if (((Standard_Integer*)OMin)[ 5] > ((Standard_Integer*)IMin)[ 5])
|
||||
((Standard_Integer*)OMin)[ 5]=((Standard_Integer*)IMin)[ 5];
|
||||
if (((Standard_Integer*)OMax)[ 5] < ((Standard_Integer*)IMax)[ 5])
|
||||
((Standard_Integer*)OMax)[ 5]=((Standard_Integer*)IMax)[ 5];
|
||||
if (((Standard_Integer*)OMin)[ 6] > ((Standard_Integer*)IMin)[ 6])
|
||||
((Standard_Integer*)OMin)[ 6]=((Standard_Integer*)IMin)[ 6];
|
||||
if (((Standard_Integer*)OMax)[ 6] < ((Standard_Integer*)IMax)[ 6])
|
||||
((Standard_Integer*)OMax)[ 6]=((Standard_Integer*)IMax)[ 6];
|
||||
if (((Standard_Integer*)OMin)[ 7] > ((Standard_Integer*)IMin)[ 7])
|
||||
((Standard_Integer*)OMin)[ 7]=((Standard_Integer*)IMin)[ 7];
|
||||
if (((Standard_Integer*)OMax)[ 7] < ((Standard_Integer*)IMax)[ 7])
|
||||
((Standard_Integer*)OMax)[ 7]=((Standard_Integer*)IMax)[ 7];
|
||||
if (((Standard_Integer*)OMin)[ 8] > ((Standard_Integer*)IMin)[ 8])
|
||||
((Standard_Integer*)OMin)[ 8]=((Standard_Integer*)IMin)[ 8];
|
||||
if (((Standard_Integer*)OMax)[ 8] < ((Standard_Integer*)IMax)[ 8])
|
||||
((Standard_Integer*)OMax)[ 8]=((Standard_Integer*)IMax)[ 8];
|
||||
if (((Standard_Integer*)OMin)[ 9] > ((Standard_Integer*)IMin)[ 9])
|
||||
((Standard_Integer*)OMin)[ 9]=((Standard_Integer*)IMin)[ 9];
|
||||
if (((Standard_Integer*)OMax)[ 9] < ((Standard_Integer*)IMax)[ 9])
|
||||
((Standard_Integer*)OMax)[ 9]=((Standard_Integer*)IMax)[ 9];
|
||||
if (((Standard_Integer*)OMin)[10] > ((Standard_Integer*)IMin)[10])
|
||||
((Standard_Integer*)OMin)[10]=((Standard_Integer*)IMin)[10];
|
||||
if (((Standard_Integer*)OMax)[10] < ((Standard_Integer*)IMax)[10])
|
||||
((Standard_Integer*)OMax)[10]=((Standard_Integer*)IMax)[10];
|
||||
if (((Standard_Integer*)OMin)[11] > ((Standard_Integer*)IMin)[11])
|
||||
((Standard_Integer*)OMin)[11]=((Standard_Integer*)IMin)[11];
|
||||
if (((Standard_Integer*)OMax)[11] < ((Standard_Integer*)IMax)[11])
|
||||
((Standard_Integer*)OMax)[11]=((Standard_Integer*)IMax)[11];
|
||||
if (((Standard_Integer*)OMin)[12] > ((Standard_Integer*)IMin)[12])
|
||||
((Standard_Integer*)OMin)[12]=((Standard_Integer*)IMin)[12];
|
||||
if (((Standard_Integer*)OMax)[12] < ((Standard_Integer*)IMax)[12])
|
||||
((Standard_Integer*)OMax)[12]=((Standard_Integer*)IMax)[12];
|
||||
if (((Standard_Integer*)OMin)[13] > ((Standard_Integer*)IMin)[13])
|
||||
((Standard_Integer*)OMin)[13]=((Standard_Integer*)IMin)[13];
|
||||
if (((Standard_Integer*)OMax)[13] < ((Standard_Integer*)IMax)[13])
|
||||
((Standard_Integer*)OMax)[13]=((Standard_Integer*)IMax)[13];
|
||||
if (((Standard_Integer*)OMin)[14] > ((Standard_Integer*)IMin)[14])
|
||||
((Standard_Integer*)OMin)[14]=((Standard_Integer*)IMin)[14];
|
||||
if (((Standard_Integer*)OMax)[14] < ((Standard_Integer*)IMax)[14])
|
||||
((Standard_Integer*)OMax)[14]=((Standard_Integer*)IMax)[14];
|
||||
if (((Standard_Integer*)OMin)[15] > ((Standard_Integer*)IMin)[15])
|
||||
((Standard_Integer*)OMin)[15]=((Standard_Integer*)IMin)[15];
|
||||
if (((Standard_Integer*)OMax)[15] < ((Standard_Integer*)IMax)[15])
|
||||
((Standard_Integer*)OMax)[15]=((Standard_Integer*)IMax)[15];
|
||||
Standard_Integer i = 0;
|
||||
while (i < 16)
|
||||
{
|
||||
if (((Standard_Integer*)OMin)[i] > ((Standard_Integer*)IMin)[i])
|
||||
((Standard_Integer*)OMin)[i]=((Standard_Integer*)IMin)[i];
|
||||
if (((Standard_Integer*)OMax)[i] < ((Standard_Integer*)IMax)[i])
|
||||
((Standard_Integer*)OMax)[i]=((Standard_Integer*)IMax)[i];
|
||||
i++;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_BiPoint.cdl
|
||||
-- Created: Thu Jun 22 12:28:58 1995
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@ecolox>
|
||||
---Copyright: Matra Datavision 1995
|
||||
-- File: HLRAlgo_BiPoint.cdl
|
||||
-- Created: Thu Jun 22 12:28:58 1995
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1995
|
||||
|
||||
class BiPoint from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_BiPoint.cxx
|
||||
// Created: Thu Jun 22 12:31:58 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_BiPoint.cxx
|
||||
// Created: Thu Jun 22 12:31:58 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
#define No_Exception
|
||||
#endif
|
||||
@ -315,4 +316,3 @@ HLRAlgo_BiPoint::HLRAlgo_BiPoint (const Standard_Real X1,
|
||||
SegFlags = flag;
|
||||
Hidden(Standard_False);
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_BiPoint.lxx
|
||||
// Created: Thu Jun 22 12:35:03 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_BiPoint.lxx
|
||||
// Created: Thu Jun 22 12:35:03 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#define EMskRg1Line ((Standard_Boolean)1)
|
||||
#define EMskRgNLine ((Standard_Boolean)2)
|
||||
@ -128,4 +128,3 @@ inline Standard_Address HLRAlgo_BiPoint::Indices () const
|
||||
|
||||
inline Standard_Address HLRAlgo_BiPoint::Coordinates () const
|
||||
{ return (Standard_Address)myCoordinates; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: Coincidence.cdl
|
||||
-- Created: Thu Aug 20 18:06:13 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo_Coincidence.cdl
|
||||
-- Created: Thu Aug 20 18:06:13 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class Coincidence from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_Coincidence.cxx
|
||||
// Created: Wed Feb 19 14:31:45 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRAlgo_Coincidence.cxx
|
||||
// Created: Wed Feb 19 14:31:45 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo_Coincidence.ixx>
|
||||
|
||||
@ -11,6 +11,9 @@
|
||||
//=======================================================================
|
||||
|
||||
HLRAlgo_Coincidence::HLRAlgo_Coincidence()
|
||||
: myFE(0),
|
||||
myParam(0.),
|
||||
myStBef(TopAbs_IN),
|
||||
myStAft(TopAbs_IN)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_Coincidence.lxx
|
||||
// Created: Wed Feb 19 14:31:45 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRAlgo_Coincidence.lxx
|
||||
// Created: Wed Feb 19 14:31:45 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
//=======================================================================
|
||||
//function : Set2D
|
||||
@ -52,4 +52,3 @@ inline void HLRAlgo_Coincidence::State3D
|
||||
stbef = myStBef;
|
||||
staft = myStAft;
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_EdgeIterator.cdl
|
||||
-- Created: Mon Jan 11 13:58:26 1993
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRAlgo_EdgeIterator.cdl
|
||||
-- Created: Mon Jan 11 13:58:26 1993
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
class EdgeIterator from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_EdgeIterator.cxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_EdgeIterator.cxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
#define No_Exception
|
||||
#endif
|
||||
@ -66,4 +67,3 @@ void HLRAlgo_EdgeIterator::NextHidden ()
|
||||
(iHid,myHidEnd,myHidTolEnd,B1,B2);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_EdgeIterator.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_EdgeIterator.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo_EdgeStatus.hxx>
|
||||
|
||||
@ -73,4 +73,3 @@ HLRAlgo_EdgeIterator::Visible (Standard_Real& Start,
|
||||
((HLRAlgo_EdgeStatus*)EVis)->VisiblePart
|
||||
(iVis,Start,TolStart,End,TolEnd);
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: EdgeStatus.cdl
|
||||
-- Created: Tue Feb 18 10:36:07 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo_EdgeStatus.cdl
|
||||
-- Created: Tue Feb 18 10:36:07 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class EdgeStatus from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_EdgeStatus.cxx
|
||||
// Created: Tue Feb 18 11:30:23 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_EdgeStatus.cxx
|
||||
// Created: Tue Feb 18 11:30:23 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
#define No_Exception
|
||||
#endif
|
||||
@ -100,4 +101,3 @@ void HLRAlgo_EdgeStatus::Hide (const Standard_Real Start ,
|
||||
if (!AllHidden()) AllHidden(myVisibles.NbIntervals() == 0);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_EdgeStatus.lxx
|
||||
// Created: Tue Feb 18 11:30:12 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_EdgeStatus.lxx
|
||||
// Created: Tue Feb 18 11:30:12 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#define EMaskAllHidden ((Standard_Boolean)1)
|
||||
#define EMaskAllVisible ((Standard_Boolean)2)
|
||||
@ -80,4 +80,3 @@ inline void HLRAlgo_EdgeStatus::AllVisible (const Standard_Boolean B)
|
||||
if (B) myFlags |= EMaskAllVisible;
|
||||
else myFlags &= ~EMaskAllVisible;
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_EdgesBlock.cdl
|
||||
-- Created: Mon Apr 6 17:57:45 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun2>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo_EdgesBlock.cdl
|
||||
-- Created: Mon Apr 6 17:57:45 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class EdgesBlock from HLRAlgo inherits TShared from MMgt
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_EdgesBlock.cxx
|
||||
// Created: Fri Mar 27 17:08:48 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRAlgo_EdgesBlock.cxx
|
||||
// Created: Fri Mar 27 17:08:48 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
#define No_Exception
|
||||
#endif
|
||||
@ -26,4 +27,3 @@ void HLRAlgo_EdgesBlock::UpdateMinMax (const Standard_Address TotMinMax)
|
||||
for (Standard_Integer i = 0; i <= 15; i++)
|
||||
myMinMax[i] = ((Standard_Integer*)TotMinMax)[i];
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_EdgesBlock.lxx
|
||||
// Created: Thu Apr 20 11:31:26 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_EdgesBlock.lxx
|
||||
// Created: Thu Apr 20 11:31:26 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#define EMaskOrient ((Standard_Boolean)15)
|
||||
#define EMaskOutLine ((Standard_Boolean)16)
|
||||
@ -166,4 +166,3 @@ inline void HLRAlgo_EdgesBlock::IsoLine (const Standard_Integer I,
|
||||
|
||||
inline Standard_Address HLRAlgo_EdgesBlock::MinMax () const
|
||||
{ return (Standard_Address)&myMinMax; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: Intersection.cdl
|
||||
-- Created: Fri Aug 21 10:41:54 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo_Intersection.cdl
|
||||
-- Created: Fri Aug 21 10:41:54 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class Intersection from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_Intersection.cxx
|
||||
// Created: Wed Feb 19 14:22:05 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRAlgo_Intersection.cxx
|
||||
// Created: Wed Feb 19 14:22:05 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo_Intersection.ixx>
|
||||
|
||||
@ -34,4 +34,3 @@ HLRAlgo_Intersection::HLRAlgo_Intersection
|
||||
myToler(Tol),
|
||||
myState(S)
|
||||
{}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_Intersection.lxx
|
||||
// Created: Wed Feb 19 14:21:57 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRAlgo_Intersection.lxx
|
||||
// Created: Wed Feb 19 14:21:57 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
//=======================================================================
|
||||
//function : Orientation
|
||||
@ -114,4 +114,3 @@ inline void HLRAlgo_Intersection::State (const TopAbs_State St)
|
||||
|
||||
inline TopAbs_State HLRAlgo_Intersection::State() const
|
||||
{ return myState; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_PolyAlgo.cdl
|
||||
-- Created: Tue Feb 18 10:36:07 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo_PolyAlgo.cdl
|
||||
-- Created: Tue Feb 18 10:36:07 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class PolyAlgo from HLRAlgo inherits TShared from MMgt
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_PolyAlgo.cxx
|
||||
// Created: Fri May 5 15:58:19 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_PolyAlgo.cxx
|
||||
// Created: Fri May 5 15:58:19 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
//#define No_Exception
|
||||
#endif
|
||||
@ -219,11 +220,7 @@ void HLRAlgo_PolyAlgo::Update ()
|
||||
Standard_Real X1,X2,X3,Y1,Y2,Y3,Z1,Z2,Z3;
|
||||
Standard_Real dn,dnx,dny,dnz,dx1,dy1,dz1,dx2,dy2,dz2,dx3,dy3;
|
||||
Standard_Real adx1,ady1,adx2,ady2,adx3,ady3;
|
||||
#ifndef DEB
|
||||
Standard_Real a =0.,b =0.,c =0.,d =0.;
|
||||
#else
|
||||
Standard_Real a,b,c,d;
|
||||
#endif
|
||||
const Standard_Address PolyTIndices = (*pd)->Indices();
|
||||
TColgp_Array1OfXYZ & Nodes = (*pd)->Nodes();
|
||||
HLRAlgo_Array1OfTData& TData = (*pd)->TData();
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_PolyAlgo.lxx
|
||||
// Created: Tue Jun 20 11:50:07 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_PolyAlgo.lxx
|
||||
// Created: Tue Jun 20 11:50:07 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <TColStd_HArray1OfTransient.hxx>
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_PolyData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@nonox>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRAlgo_PolyData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
class PolyData from HLRAlgo inherits TShared from MMgt
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_PolyData.cxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_PolyData.cxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
//#define No_Exception
|
||||
#endif
|
||||
@ -807,4 +808,3 @@ HideByOneTriangle (const Standard_Address Coordinates,
|
||||
else status.Hide(psta,(Standard_ShortReal)TolParam,pend,(Standard_ShortReal)TolParam,
|
||||
Standard_False,Standard_False);
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
|
||||
// File: HLRAlgo_PolyData.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_PolyData.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <TColgp_HArray1OfXYZ.hxx>
|
||||
#include <HLRAlgo_HArray1OfTData.hxx>
|
||||
@ -68,4 +67,3 @@ inline Standard_Boolean HLRAlgo_PolyData::Hiding () const
|
||||
|
||||
inline Standard_Address HLRAlgo_PolyData::Indices ()
|
||||
{ return (Standard_Address)myIndices; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_PolyHidingData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@nonox>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRAlgo_PolyHidingData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
class PolyHidingData from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// File: HLRAlgo_PolyHidingData.cxx
|
||||
// Created: Wed Jun 21 19:23:39 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_PolyHidingData.cxx
|
||||
// Created: Wed Jun 21 19:23:39 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo_PolyHidingData.ixx>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_PolyHidingData.lxx
|
||||
// Created: Wed Jun 21 19:29:59 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_PolyHidingData.lxx
|
||||
// Created: Wed Jun 21 19:29:59 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
//=======================================================================
|
||||
//function : PolyHidingData
|
||||
@ -51,4 +51,3 @@ HLRAlgo_PolyHidingData::IndexAndMinMax() const
|
||||
inline Standard_Address
|
||||
HLRAlgo_PolyHidingData::Plan() const
|
||||
{ return (Standard_Address)myPlan; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_PolyInternalData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@nonox>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRAlgo_PolyInternalData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
class PolyInternalData from HLRAlgo inherits TShared from MMgt
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_PolyInternalData.cxx
|
||||
// Created: Tue Jul 11 16:59:46 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_PolyInternalData.cxx
|
||||
// Created: Tue Jul 11 16:59:46 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <Standard_Stream.hxx>
|
||||
#include <HLRAlgo_PolyInternalData.ixx>
|
||||
@ -917,4 +917,3 @@ IncPINod (Standard_Address& PINod1,
|
||||
}
|
||||
myNbPINod++;
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_PolyInternalData.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_PolyInternalData.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <TColStd_HArray1OfInteger.hxx>
|
||||
#include <TColStd_HArray1OfBoolean.hxx>
|
||||
@ -126,4 +126,3 @@ HLRAlgo_PolyInternalData::PINod () const
|
||||
inline HLRAlgo_Array1OfPISeg &
|
||||
HLRAlgo_PolyInternalData::PISeg () const
|
||||
{ return myPISeg->ChangeArray1(); }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_PolyInternalNode.cdl
|
||||
-- Created: Fri Jan 10 22:23:38 1997
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@partox.paris1.matra-dtv.fr>
|
||||
---Copyright: Matra Datavision 1997
|
||||
-- File: HLRAlgo_PolyInternalNode.cdl
|
||||
-- Created: Fri Jan 10 22:23:38 1997
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1997
|
||||
|
||||
class PolyInternalNode from HLRAlgo inherits TShared from MMgt
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
// File: HLRAlgo_PolyInternalNode.cxx
|
||||
// Created: Fri Jan 10 22:25:33 1997
|
||||
// Author: Christophe MARION
|
||||
// <cma@partox.paris1.matra-dtv.fr>
|
||||
// File: HLRAlgo_PolyInternalNode.cxx
|
||||
// Created: Fri Jan 10 22:25:33 1997
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo_PolyInternalNode.ixx>
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_PolyInternalNode.lxx
|
||||
// Created: Fri Jan 10 22:25:51 1997
|
||||
// Author: Christophe MARION
|
||||
// <cma@partox.paris1.matra-dtv.fr>
|
||||
// File: HLRAlgo_PolyInternalNode.lxx
|
||||
// Created: Fri Jan 10 22:25:51 1997
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
//=======================================================================
|
||||
//function : HLRAlgo_PolyInternalNode
|
||||
@ -31,4 +31,3 @@ inline Standard_Address HLRAlgo_PolyInternalNode::Indices () const
|
||||
|
||||
inline Standard_Address HLRAlgo_PolyInternalNode::RValues () const
|
||||
{ return (Standard_Address)myRValues; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_PolyInternalSegment.cdl
|
||||
-- Created: Tue Dec 3 17:00:57 1996
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@partox.paris1.matra-dtv.fr>
|
||||
---Copyright: Matra Datavision 1996
|
||||
-- File: HLRAlgo_PolyInternalSegment.cdl
|
||||
-- Created: Tue Dec 3 17:00:57 1996
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1996
|
||||
|
||||
class PolyInternalSegment from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// File: HLRAlgo_PolyInternalSegment.cxx
|
||||
// Created: Tue Dec 3 17:23:48 1996
|
||||
// Author: Christophe MARION
|
||||
// <cma@partox.paris1.matra-dtv.fr>
|
||||
// File: HLRAlgo_PolyInternalSegment.cxx
|
||||
// Created: Tue Dec 3 17:23:48 1996
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo_PolyInternalSegment.ixx>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_PolyInternalSegment.lxx
|
||||
// Created: Tue Dec 3 17:09:42 1996
|
||||
// Author: Christophe MARION
|
||||
// <cma@partox.paris1.matra-dtv.fr>
|
||||
// File: HLRAlgo_PolyInternalSegment.lxx
|
||||
// Created: Tue Dec 3 17:09:42 1996
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
//=======================================================================
|
||||
//function : HLRAlgo_PolyInternalSegment
|
||||
@ -18,4 +18,3 @@ inline HLRAlgo_PolyInternalSegment::HLRAlgo_PolyInternalSegment ()
|
||||
|
||||
inline Standard_Address HLRAlgo_PolyInternalSegment::Indices () const
|
||||
{ return (Standard_Address)myIndices; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_PolyShellData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@nonox>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRAlgo_PolyShellData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
class PolyShellData from HLRAlgo inherits TShared from MMgt
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_PolyShellData.cxx
|
||||
// Created: Fri May 5 15:58:19 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_PolyShellData.cxx
|
||||
// Created: Fri May 5 15:58:19 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
//#define No_Exception
|
||||
#endif
|
||||
@ -101,4 +102,3 @@ UpdateHiding (const Standard_Integer nbHiding)
|
||||
myHPolHi = new TColStd_HArray1OfTransient(1,nbHiding);
|
||||
else myHPolHi.Nullify();
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_PolyShellData.lxx
|
||||
// Created: Fri May 5 15:58:19 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_PolyShellData.lxx
|
||||
// Created: Fri May 5 15:58:19 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <TColStd_HArray1OfTransient.hxx>
|
||||
|
||||
@ -48,4 +48,3 @@ HLRAlgo_PolyShellData::Edges ()
|
||||
|
||||
inline Standard_Address HLRAlgo_PolyShellData::Indices ()
|
||||
{ return (Standard_Address)myMinMax; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_Projector.cdl
|
||||
-- Created: Thu Mar 12 13:32:28 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun2>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo_Projector.cdl
|
||||
-- Created: Thu Mar 12 13:32:28 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class Projector from HLRAlgo
|
||||
---Purpose: Implements a projector object.
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_Projector.cxx
|
||||
// Created: Fri Mar 13 11:08:32 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRAlgo_Projector.cxx
|
||||
// Created: Fri Mar 13 11:08:32 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
// #define No_Exception
|
||||
#endif
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_Projector.lxx
|
||||
// Created: Thu Jul 9 12:50:25 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_Projector.lxx
|
||||
// Created: Thu Jul 9 12:50:25 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <Standard_NoSuchObject.hxx>
|
||||
#include <gp_Vec.hxx>
|
||||
@ -81,4 +81,3 @@ inline void HLRAlgo_Projector::Transform (gp_Vec& D) const
|
||||
|
||||
inline void HLRAlgo_Projector::Transform (gp_Pnt& Pnt) const
|
||||
{ Pnt.Transform(myTrsf); }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_TriangleData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@nonox>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRAlgo_TriangleData.cdl
|
||||
-- Created: Fri Oct 29 15:19:08 1993
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
class TriangleData from HLRAlgo
|
||||
|
||||
|
@ -1,7 +1,6 @@
|
||||
// File: HLRAlgo_TriangleData.cxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_TriangleData.cxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRAlgo_TriangleData.ixx>
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_TriangleData.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun1>
|
||||
// File: HLRAlgo_TriangleData.lxx
|
||||
// Created: Mon Jan 11 13:58:26 1993
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
//=======================================================================
|
||||
//function : TriangleData
|
||||
@ -18,4 +18,3 @@ inline HLRAlgo_TriangleData::HLRAlgo_TriangleData ()
|
||||
|
||||
inline Standard_Address HLRAlgo_TriangleData::Indices () const
|
||||
{ return (Standard_Address)myIndices; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRAlgo_WiresBlock.cdl
|
||||
-- Created: Mon Apr 6 17:56:12 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun2>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRAlgo_WiresBlock.cdl
|
||||
-- Created: Mon Apr 6 17:56:12 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class WiresBlock from HLRAlgo inherits TShared from MMgt
|
||||
|
||||
|
@ -1,7 +1,8 @@
|
||||
// File: HLRAlgo_WiresBlock.cxx
|
||||
// Created: Fri Mar 27 17:08:48 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRAlgo_WiresBlock.cxx
|
||||
// Created: Fri Mar 27 17:08:48 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#ifndef No_Exception
|
||||
#define No_Exception
|
||||
#endif
|
||||
@ -52,4 +53,3 @@ void HLRAlgo_WiresBlock::UpdateMinMax (const Standard_Address TotMinMax)
|
||||
for (Standard_Integer i = 0; i <= 15; i++)
|
||||
myMinMax[i] = ((Standard_Integer*)TotMinMax)[i];
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRAlgo_WiresBlock.lxx
|
||||
// Created: Tue Sep 5 15:11:36 1995
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRAlgo_WiresBlock.lxx
|
||||
// Created: Tue Sep 5 15:11:36 1995
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
//=======================================================================
|
||||
//function : MinMax
|
||||
@ -10,4 +10,3 @@
|
||||
|
||||
inline Standard_Address HLRAlgo_WiresBlock::MinMax () const
|
||||
{ return (Standard_Address)&myMinMax; }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep.cdl
|
||||
-- Created: Wed Oct 14 11:08:52 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRBRep.cdl
|
||||
-- Created: Wed Oct 14 11:08:52 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
package HLRBRep
|
||||
---Purpose: Hidden Lines Removal
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep.cxx
|
||||
// Created: Thu Aug 27 12:33:14 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRBRep.cxx
|
||||
// Created: Thu Aug 27 12:33:14 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRBRep.ixx>
|
||||
#include <BRepLib_MakeEdge2d.hxx>
|
||||
@ -116,4 +116,3 @@ HLRBRep::PolyHLRAngleAndDeflection (const Standard_Real InAngl,
|
||||
(HAngMax - HAngLim) / (HAngMax - HAngMin));
|
||||
OutDefl = OutAngl * OutAngl * 0.5;
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep_Algo.cdl
|
||||
-- Created: Wed Aug 3 16:15:26 1994
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@ecolox>
|
||||
---Copyright: Matra Datavision 1994
|
||||
-- File: HLRBRep_Algo.cdl
|
||||
-- Created: Wed Aug 3 16:15:26 1994
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1994
|
||||
|
||||
class Algo from HLRBRep inherits InternalAlgo from HLRBRep
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep_Algo.cxx
|
||||
// Created: Thu Aug 4 10:18:44 1994
|
||||
// Author: Christophe MARION
|
||||
// <cma@ecolox>
|
||||
// File: HLRBRep_Algo.cxx
|
||||
// Created: Thu Aug 4 10:18:44 1994
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#define No_Standard_OutOfRange
|
||||
|
||||
@ -80,4 +80,3 @@ void HLRBRep_Algo::OutLinedShapeNullify ()
|
||||
ShapeBounds(i).Shape()->DataStructure().Clear();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep_AreaLimit.cdl
|
||||
-- Created: Thu Apr 17 20:21:04 1997
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@partox.paris1.matra-dtv.fr>
|
||||
---Copyright: Matra Datavision 1997
|
||||
-- File: HLRBRep_AreaLimit.cdl
|
||||
-- Created: Thu Apr 17 20:21:04 1997
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1997
|
||||
|
||||
class AreaLimit from HLRBRep inherits TShared from MMgt
|
||||
|
||||
@ -88,4 +87,3 @@ fields
|
||||
myNext : AreaLimit from HLRBRep;
|
||||
|
||||
end AreaLimit;
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
// File: HLRBRep_AreaLimit.cxx
|
||||
// Created: Thu Apr 17 21:43:21 1997
|
||||
// Author: Christophe MARION
|
||||
// <cma@partox.paris1.matra-dtv.fr>
|
||||
|
||||
// File: HLRBRep_AreaLimit.cxx
|
||||
// Created: Thu Apr 17 21:43:21 1997
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRBRep_AreaLimit.ixx>
|
||||
|
||||
@ -189,4 +188,3 @@ void HLRBRep_AreaLimit::Clear()
|
||||
myPrevious.Nullify();
|
||||
myNext.Nullify();
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep_BCurveTool.cdl
|
||||
-- Created: Mon Jul 17 16:25:23 1995
|
||||
-- Author: Modelistation
|
||||
-- <model@mastox>
|
||||
---Copyright: Matra Datavision 1995
|
||||
-- File: HLRBRep_BCurveTool.cdl
|
||||
-- Created: Mon Jul 17 16:25:23 1995
|
||||
-- Author: Modelistation
|
||||
---Copyright: Matra Datavision 1995
|
||||
|
||||
class BCurveTool from HLRBRep
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep_BCurveTool.cxx
|
||||
// Created: Mon Jul 17 17:39:39 1995
|
||||
// Author: Modelistation
|
||||
// <model@mastox>
|
||||
// File: HLRBRep_BCurveTool.cxx
|
||||
// Created: Mon Jul 17 17:39:39 1995
|
||||
// Author: Modelistation
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRBRep_BCurveTool.ixx>
|
||||
#include <GeomAbs_CurveType.hxx>
|
||||
@ -94,4 +94,3 @@ Handle(Geom_BezierCurve)
|
||||
Handle(Geom_BSplineCurve)
|
||||
HLRBRep_BCurveTool::BSpline (const BRepAdaptor_Curve& C)
|
||||
{ return(C.BSpline()); }
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep_BCurveTool.lxx
|
||||
// Created: Thu Oct 22 12:14:59 1992
|
||||
// Author: Laurent BUCHARD
|
||||
// <lbr@sdsun2>
|
||||
// File: HLRBRep_BCurveTool.lxx
|
||||
// Created: Thu Oct 22 12:14:59 1992
|
||||
// Author: Laurent BUCHARD
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <GeomAbs_CurveType.hxx>
|
||||
#include <GeomAbs_Shape.hxx>
|
||||
@ -253,4 +253,3 @@ HLRBRep_BCurveTool::NbPoles (const BRepAdaptor_Curve& C)
|
||||
inline Standard_Integer
|
||||
HLRBRep_BCurveTool::NbKnots(const BRepAdaptor_Curve& C)
|
||||
{ return(C.NbKnots()); }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep_BSurfaceTool.cdl
|
||||
-- Created: Fri Jul 2 16:59:47 1993
|
||||
-- Author: Laurent BUCHARD
|
||||
-- <lbr@nonox>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRBRep_BSurfaceTool.cdl
|
||||
-- Created: Fri Jul 2 16:59:47 1993
|
||||
-- Author: Laurent BUCHARD
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
|
||||
class BSurfaceTool from HLRBRep
|
||||
|
@ -1,8 +1,8 @@
|
||||
//-- File : HLRBRep_BSurfaceTool.cxx
|
||||
//-- Created : Wed Jui 7 18:00:00 1993
|
||||
//-- Author : Laurent BUCHARD
|
||||
//-- <lbr@nonox>
|
||||
//-- Copyright: Matra Datavision 1993
|
||||
// File: HLRBRep_BSurfaceTool.cxx
|
||||
// Created: Wed Jui 7 18:00:00 1993
|
||||
// Author: Laurent BUCHARD
|
||||
// Copyright: Matra Datavision 1993
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRBRep_BSurfaceTool.ixx>
|
||||
#include <BRepAdaptor_Surface.hxx>
|
||||
@ -152,4 +152,3 @@ HLRBRep_BSurfaceTool::NbSamplesV(const BRepAdaptor_Surface& S,
|
||||
}
|
||||
return(n);
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,8 @@
|
||||
//-- File : HLRBRep_BSurfaceTool.lxx
|
||||
//-- Created : Wed Jui 7 18:00:00 1993
|
||||
//-- Author : Laurent BUCHARD
|
||||
//-- <lbr@nonox>
|
||||
//-- Copyright: Matra Datavision 1993
|
||||
// File: HLRBRep_BSurfaceTool.lxx
|
||||
// Created: Wed Jui 7 18:00:00 1993
|
||||
// Author: Laurent BUCHARD
|
||||
// Copyright: Matra Datavision 1993
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <gp_Pnt.hxx>
|
||||
#include <gp_Vec.hxx>
|
||||
@ -472,4 +472,3 @@ HLRBRep_BSurfaceTool::NbVKnots(const BRepAdaptor_Surface& S)
|
||||
inline Standard_Boolean
|
||||
HLRBRep_BSurfaceTool::IsVRational(const BRepAdaptor_Surface& S)
|
||||
{ return(S.IsVRational()); }
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep_BiPnt2D.cdl
|
||||
-- Created: Fri Aug 21 17:10:30 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRBRep_BiPnt2D.cdl
|
||||
-- Created: Fri Aug 21 17:10:30 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class BiPnt2D from HLRBRep
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep_BiPnt2D.cxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRBRep_BiPnt2D.cxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRBRep_BiPnt2D.ixx>
|
||||
|
||||
@ -38,4 +38,3 @@ HLRBRep_BiPnt2D::HLRBRep_BiPnt2D (const Standard_Real x1,
|
||||
OutLine(outl);
|
||||
IntLine(intl);
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep_BiPnt2D.lxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRBRep_BiPnt2D.lxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#define EMskRg1Line ((Standard_Boolean)1)
|
||||
#define EMskRgNLine ((Standard_Boolean)2)
|
||||
@ -115,4 +115,3 @@ inline void HLRBRep_BiPnt2D::IntLine (const Standard_Boolean B)
|
||||
if (B) myFlags |= EMskIntLine;
|
||||
else myFlags &= ~EMskIntLine;
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep_BiPoint.cdl
|
||||
-- Created: Fri Aug 21 17:10:30 1992
|
||||
-- Author: Christophe MARION
|
||||
-- <cma@sdsun1>
|
||||
---Copyright: Matra Datavision 1992
|
||||
-- File: HLRBRep_BiPoint.cdl
|
||||
-- Created: Fri Aug 21 17:10:30 1992
|
||||
-- Author: Christophe MARION
|
||||
---Copyright: Matra Datavision 1992
|
||||
|
||||
class BiPoint from HLRBRep
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep_BiPoint.cxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRBRep_BiPoint.cxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#include <HLRBRep_BiPoint.ixx>
|
||||
|
||||
@ -40,4 +40,3 @@ HLRBRep_BiPoint::HLRBRep_BiPoint (const Standard_Real x1,
|
||||
OutLine(outl);
|
||||
IntLine(intl);
|
||||
}
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
// File: HLRBRep_BiPoint.lxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// <cma@sdsun2>
|
||||
// File: HLRBRep_BiPoint.lxx
|
||||
// Created: Tue Aug 25 10:43:05 1992
|
||||
// Author: Christophe MARION
|
||||
// Copyright: OPEN CASCADE 2000
|
||||
|
||||
#define EMskRg1Line ((Standard_Boolean)1)
|
||||
#define EMskRgNLine ((Standard_Boolean)2)
|
||||
@ -115,4 +115,3 @@ inline void HLRBRep_BiPoint::IntLine (const Standard_Boolean B)
|
||||
if (B) myFlags |= EMskIntLine;
|
||||
else myFlags &= ~EMskIntLine;
|
||||
}
|
||||
|
||||
|
@ -1,8 +1,7 @@
|
||||
-- File: HLRBRep_CLPropsATool.cdl
|
||||
-- Created: Tue Apr 20 18:34:23 1993
|
||||
-- Author: Modelistation
|
||||
-- <model@phylox>
|
||||
---Copyright: Matra Datavision 1993
|
||||
-- File: HLRBRep_CLPropsATool.cdl
|
||||
-- Created: Tue Apr 20 18:34:23 1993
|
||||
-- Author: Modelistation
|
||||
---Copyright: Matra Datavision 1993
|
||||
|
||||
class CLPropsATool from HLRBRep
|
||||
|
||||
@ -73,4 +72,3 @@ is
|
||||
---C++: inline
|
||||
|
||||
end CLPropsATool;
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user