1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0025928: Tool for comparing curves

I
New commands:
xdistcc - check distance between two 3d curves.
xdistcc2ds - check distance between 3d curve and curve on surface (projected curve).
xdistc2dc2dss - check distance between two curve on surface (projected curves).

This commands are print 3d distance between input objects built on even grid.
It is supposed that curves have same parametrization.

usage:
xdistcc curve1 curve2 startParam finishParam [NumberOfSamplePoints]
xdistcc2ds c c2d surf startParam finishParam [NumberOfSamplePoints]
xdistc2dc2dss c2d_1 c2d_2 surf1 surf2 startParam finishParam [NumberOfSamplePoints]

II
Doxygen documentation about "xdist" family added.
This commit is contained in:
aml 2015-03-13 13:27:01 +03:00 committed by bugmaster
parent e4ffdb1e40
commit 0a243bb4c4
2 changed files with 301 additions and 0 deletions

View File

@ -35,6 +35,41 @@ This feature can be activated by defining environment variable *CSF_DEBUG_BOP*,
The diagnostic code checks validity of the input arguments and the result of each Boolean operation. When an invalid situation is detected, the report consisting of argument shapes and a DRAW script to reproduce the problematic operation is saved to the directory pointed by *CSF_DEBUG_BOP*.
@section occt_debug_commands DRAW debugging commands
In this section description and usage of several debug commands represented.
@subsection occt_debug_commands_xdist "xdist" commands family
Commands with prefix "xdist" provides functionality to check distance between two objects on even grid:
* xdistef - distance between edge and face.
* xdistcs - distance between curve and surface. This means that projection to surface of each sample point computed.
* xdistcc - distance between two 3d curves.
* xdistcc2ds - distance between 3d curve and 2d curve on surface.
* xdistc2dc2dss - distance between two 2d curves on surface.
**Usage:**
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~{.cpp}
xdistef edge face
xdistcs curve surface firstParam lastParam [NumberOfSamplePoints]
xdistcc curve1 curve2 startParam finishParam [NumberOfSamplePoints]
xdistcc2ds c curve2d surf startParam finishParam [NumberOfSamplePoints]
xdistc2dc2dss curve2d_1 curve2d_2 surface_1 surface_2 startParam finishParam [NumberOfSamplePoints]
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
It is assumed that curves have same parametrization range and startParam < finishParam.
**Examples:**
~~~~~
bopcurves b1 b2 -2d
mksurf s1 b1
mksurf s2 b2
xdistcs c_1 s1 0 1 100
xdistcc2ds c_1 c2d2_1 s2 0 1
xdistc2dc2dss c2d1_1 c2d2_1 s1 s2 0 1 1000
~~~~~
@section occt_debug_call Functions for calling from debugger
Modern interactive debuggers provide the possibility to execute application code at a program break point. This feature can be used to analyse the temporary objects available only in the context of the debugged code. OCCT provides several global functions that can be used in this way.

View File

@ -15,6 +15,7 @@
#include <GeometryTest.hxx>
#include <Geom_Curve.hxx>
#include <Geom2d_Curve.hxx>
#include <Geom_Surface.hxx>
#include <GeomAPI_ProjectPointOnSurf.hxx>
@ -30,6 +31,268 @@
Standard_IMPORT Draw_Viewer dout;
#endif
//=======================================================================
//function : xdistcc
//purpose :
//=======================================================================
static Standard_Integer xdistcc(Draw_Interpretor& , Standard_Integer n, const char** a)
{
if (n < 5)
{
cout<<" Use xdistcc c1 c2 t1 t2 nbp"<<endl;
return 0;
}
Standard_Integer i, aNbP, iSize;
Standard_Real aD, aT, aT1, aT2, dT;
gp_Pnt aP1, aP2;
Handle(Geom_Curve) aC1, aC2;
Handle(Draw_Marker3D) aMr;
Draw_Color aColor(Draw_rouge);
aC1=DrawTrSurf::GetCurve(a[1]);
if (aC1.IsNull())
{
cout<<a[1]<<" is null curve"<<endl;
return 0;
}
aC2=DrawTrSurf::GetCurve(a[2]);
if (aC2.IsNull())
{
cout<<a[2]<<" is null curve"<<endl;
return 0;
}
aT1=Draw::Atof(a[3]);
aT2=Draw::Atof(a[4]);
aNbP=10;
if (n > 4)
{
aNbP=Draw::Atoi(a[5]);
}
iSize=3;
Standard_Real aMaxParam = 0.0;
Standard_Real aMaxDist = 0.0;
dT=(aT2 - aT1) / (aNbP - 1);
for(i = 0; i < aNbP; ++i)
{
aT=aT1 + i * dT;
if (i == aNbP-1)
aT=aT2;
aC1->D0(aT, aP1);
aC2->D0(aT, aP2);
aD = aP1.Distance(aP2);
if (aD > aMaxDist)
{
aMaxParam = aT;
aMaxDist = aD;
}
printf(" T=%lg\tD=%lg\n", aT, aD);
aMr=new Draw_Marker3D(aP1, Draw_Plus, aColor, iSize);
dout << aMr;
}
cout << "Max distance = " << aMaxDist << endl;
cout << "Param = " << aMaxParam << endl;
return 0;
}
//=======================================================================
//function : xdistc2dc2dss
//purpose :
//=======================================================================
static Standard_Integer xdistc2dc2dss(Draw_Interpretor& , Standard_Integer n, const char** a)
{
if (n < 7)
{
cout<<" Use xdistc2dc2dss c2d_1 c2d_2 s1 s2 t1 t2 nbp"<<endl;
return 0;
}
Standard_Integer i, aNbP, iSize;
Standard_Real aD, aT, aT1, aT2, dT;
gp_Pnt aP1, aP2;
gp_Pnt2d aP2d1, aP2d2;
Handle(Geom2d_Curve) aC2d1, aC2d2;
Handle(Geom_Surface) aS1, aS2;
Handle(Draw_Marker3D) aMr;
Draw_Color aColor(Draw_rouge);
aC2d1=DrawTrSurf::GetCurve2d(a[1]);
if (aC2d1.IsNull())
{
cout<<a[1]<<" is null 2dcurve"<<endl;
return 0;
}
aC2d2=DrawTrSurf::GetCurve2d(a[2]);
if (aC2d2.IsNull())
{
cout<<a[2]<<" is null 2dcurve"<<endl;
return 0;
}
aS1=DrawTrSurf::GetSurface(a[3]);
if (aS1.IsNull())
{
cout<<a[3]<<" is null surface"<<endl;
return 0;
}
aS2=DrawTrSurf::GetSurface(a[4]);
if (aS2.IsNull())
{
cout<<a[4]<<" is null surface"<<endl;
return 0;
}
aT1=Draw::Atof(a[5]);
aT2=Draw::Atof(a[6]);
aNbP=10;
if (n > 6)
{
aNbP=Draw::Atoi(a[7]);
}
iSize=3;
Standard_Real aMaxParam = 0.0;
Standard_Real aMaxDist = 0.0;
dT=(aT2 - aT1) / (aNbP - 1);
for(i = 0; i < aNbP; ++i)
{
aT=aT1 + i * dT;
if (i == aNbP-1)
aT=aT2;
aC2d1->D0(aT, aP2d1);
aS1->D0(aP2d1.X(), aP2d1.Y(), aP1);
aC2d2->D0(aT, aP2d2);
aS2->D0(aP2d2.X(), aP2d2.Y(), aP2);
aD = aP1.Distance(aP2);
if (aD > aMaxDist)
{
aMaxParam = aT;
aMaxDist = aD;
}
printf(" T=%lg\tD=%lg\n", aT, aD);
aMr=new Draw_Marker3D(aP1, Draw_Plus, aColor, iSize);
dout << aMr;
}
cout << "Max distance = " << aMaxDist << endl;
cout << "Param = " << aMaxParam << endl;
return 0;
}
//=======================================================================
//function : xdistcc2ds
//purpose :
//=======================================================================
static Standard_Integer xdistcc2ds(Draw_Interpretor& , Standard_Integer n, const char** a)
{
if (n < 6)
{
cout<<" Use xdistcc2ds c c2d s t1 t2 nbp"<<endl;
return 0;
}
Standard_Integer i, aNbP, iSize;
Standard_Real aD, aT, aT1, aT2, dT;
gp_Pnt aP, aPOnS;
gp_Pnt2d aP2d;
Handle(Geom_Curve) aC;
Handle(Geom2d_Curve) aC2d;
Handle(Geom_Surface) aS;
Handle(Draw_Marker3D) aMr;
Draw_Color aColor(Draw_rouge);
aC=DrawTrSurf::GetCurve(a[1]);
if (aC.IsNull())
{
cout<<a[1]<<" is null curve"<<endl;
return 0;
}
aC2d=DrawTrSurf::GetCurve2d(a[2]);
if (aC2d.IsNull())
{
cout<<a[2]<<" is null 2dcurve"<<endl;
return 0;
}
aS=DrawTrSurf::GetSurface(a[3]);
if (aS.IsNull())
{
cout<<a[3]<<" is null surface"<<endl;
return 0;
}
aT1=Draw::Atof(a[4]);
aT2=Draw::Atof(a[5]);
aNbP=10;
if (n>5)
{
aNbP=Draw::Atoi(a[6]);
}
iSize=3;
Standard_Real aMaxParam = 0.0;
Standard_Real aMaxDist = 0.0;
dT=(aT2 - aT1) / (aNbP - 1);
for(i = 0; i < aNbP; ++i)
{
aT=aT1 + i * dT;
if (i == aNbP-1)
aT=aT2;
aC->D0(aT, aP);
aC2d->D0(aT, aP2d);
aS->D0(aP2d.X(), aP2d.Y(), aPOnS);
aD = aP.Distance(aPOnS);
if (aD > aMaxDist)
{
aMaxParam = aT;
aMaxDist = aD;
}
printf(" T=%lg\tD=%lg\n", aT, aD);
aMr=new Draw_Marker3D(aP, Draw_Plus, aColor, iSize);
dout << aMr;
}
cout << "Max distance = " << aMaxDist << endl;
cout << "Param = " << aMaxParam << endl;
return 0;
}
//=======================================================================
//function : xdistcs
//purpose :
@ -119,4 +382,7 @@ void GeometryTest::TestProjCommands(Draw_Interpretor& theCommands)
g = "Testing of projection (geometric objects)";
theCommands.Add("xdistcs", "xdistcs c s t1 t2 nbp", __FILE__, xdistcs, g);
theCommands.Add("xdistcc2ds", "xdistcc2ds c c2d s t1 t2 nbp", __FILE__, xdistcc2ds, g);
theCommands.Add("xdistc2dc2dss", "xdistc2dc2dss c2d_1 c2d_2 s1 s2 t1 t2 nbp", __FILE__, xdistc2dc2dss, g);
theCommands.Add("xdistcc", "xdistcc c1 c2 t1 t2 nbp", __FILE__, xdistcc, g);
}