-- File: BOP_CorrectTolerances.cdl -- Created: Tue Apr 17 12:09:02 2001 -- Author: Peter KURNEV -- ---Copyright: Matra Datavision 2001 class CorrectTolerances from BOP ---Purpose: --- The Set of static functions to provide valid values of --- tolerances for shapes. --- Tolerances becomes valid in terms of the checkshape. uses Shape from TopoDS is CorrectTolerances (myclass; aS: Shape from TopoDS; aTolMax: Real from Standard =0.0001); ---Purpose: --- Provides valid values of tolerances for the shape --- is max value of the tolerance that can be --- accepted for correction. If real value of the tolerance --- will be greater than , the correction does not --- perform. --- CorrectCurveOnSurface (myclass; aS: Shape from TopoDS; aTolMax: Real from Standard =0.0001); ---Purpose: --- Provides valid values of tolerances for the shape --- in terms of BRepCheck_InvalidCurveOnSurface. --- CorrectPointOnCurve (myclass; aS: Shape from TopoDS; aTolMax: Real from Standard =0.0001); ---Purpose: --- Provides valid values of tolerances for the shape --- in terms of BRepCheck_InvalidPointOnCurve. --- end CorrectTolerances;