1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0026423: Complete documentation of CPnts_AbscissaPoint Adv/Perform methods

This commit is contained in:
BenjaminBihler 2015-07-20 18:21:58 +03:00 committed by bugmaster
parent 7131619620
commit e03bdee2e1

View File

@ -132,10 +132,15 @@ public:
//! Computes the point at the distance <Abscissa> of
//! the curve.
//! U0 is the parameter of the point from which the distance
//! is measured.
Standard_EXPORT void Perform (const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Resolution);
//! Computes the point at the distance <Abscissa> of
//! the curve.
//! U0 is the parameter of the point from which the distance
//! is measured and Ui is the starting value for the iterative
//! process (should be close to the final solution).
Standard_EXPORT void Perform (const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution);
//! Computes the point at the distance <Abscissa> of
@ -143,6 +148,9 @@ public:
//! to use this method in right way it is necessary to call
//! empty consructor. then call method Init with
//! Tolerance = Resolution, then call AdvPermorm.
//! U0 is the parameter of the point from which the distance
//! is measured and Ui is the starting value for the iterative
//! process (should be close to the final solution).
Standard_EXPORT void AdvPerform (const Standard_Real Abscissa, const Standard_Real U0, const Standard_Real Ui, const Standard_Real Resolution);
//! True if the computation was successful, False otherwise.