mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0028201: Add square PConfusion() method to the Precision class
Method SquarePConfusion has been added to simplify code.
This commit is contained in:
parent
4dba155d8e
commit
dbe54d10f9
@ -260,6 +260,10 @@ public:
|
|||||||
//! tolerance to your own algorithm.
|
//! tolerance to your own algorithm.
|
||||||
static Standard_Real PConfusion (const Standard_Real T) { return Parametric (Confusion(), T); }
|
static Standard_Real PConfusion (const Standard_Real T) { return Parametric (Confusion(), T); }
|
||||||
|
|
||||||
|
//! Returns square of PConfusion.
|
||||||
|
//! Created for speed and convenience.
|
||||||
|
static Standard_Real SquarePConfusion() { return PConfusion() * PConfusion(); }
|
||||||
|
|
||||||
//! Returns a precision value in parametric space, which
|
//! Returns a precision value in parametric space, which
|
||||||
//! may be used by intersection algorithms, to decide that
|
//! may be used by intersection algorithms, to decide that
|
||||||
//! a solution is reached. The purpose of this function is to
|
//! a solution is reached. The purpose of this function is to
|
||||||
|
Loading…
x
Reference in New Issue
Block a user