mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0027696: Return max distance in xdistcs Draw command
Message about maximal distance is added for xdistcs command.
This commit is contained in:
parent
e8e26df06c
commit
27ba9c6006
@ -344,6 +344,9 @@ static Standard_Integer xdistcs(Draw_Interpretor& di, Standard_Integer n, const
|
|||||||
iSize=3;
|
iSize=3;
|
||||||
//
|
//
|
||||||
dT=(aT2-aT1)/(aNbP-1);
|
dT=(aT2-aT1)/(aNbP-1);
|
||||||
|
|
||||||
|
Standard_Real aMaxParam = 0.0;
|
||||||
|
Standard_Real aMaxDist = 0.0;
|
||||||
for (i=0; i<aNbP; ++i) {
|
for (i=0; i<aNbP; ++i) {
|
||||||
aT=aT1+i*dT;
|
aT=aT1+i*dT;
|
||||||
if (i==aNbP-1) {
|
if (i==aNbP-1) {
|
||||||
@ -374,7 +377,16 @@ static Standard_Integer xdistcs(Draw_Interpretor& di, Standard_Integer n, const
|
|||||||
//
|
//
|
||||||
aMr=new Draw_Marker3D(aP, Draw_Plus, aColor, iSize);
|
aMr=new Draw_Marker3D(aP, Draw_Plus, aColor, iSize);
|
||||||
dout << aMr;
|
dout << aMr;
|
||||||
|
|
||||||
|
if (aD > aMaxDist)
|
||||||
|
{
|
||||||
|
aMaxParam = aT;
|
||||||
|
aMaxDist = aD;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
di << "Max distance = " << aMaxDist << "\n" ;
|
||||||
|
di << "Param = " << aMaxParam << "\n" ;
|
||||||
//
|
//
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user