1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-21 10:13:43 +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 abv
parent 0ccb5dcc03
commit 06b2381dc9

View File

@ -153,11 +153,16 @@ is
Perform(me: in out; Abscissa, U0, Resolution : Real)
---Purpose: Computes the point at the distance <Abscissa> of
-- the curve.
-- U0 is the parameter of the point from which the distance
-- is measured.
is static;
Perform(me: in out; Abscissa, U0, Ui, Resolution : Real)
---Purpose: 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).
is static;
AdvPerform(me: in out; Abscissa, U0, Ui, Resolution : Real)
@ -166,6 +171,9 @@ is
-- 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).
is static;
IsDone(me)