1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-26 10:19:45 +03:00
occt/src/GeomConvert/GeomConvert_ApproxSurface.cdl
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

94 lines
3.6 KiB
Plaintext
Executable File

-- Created on: 1997-08-26
-- Created by: Stepan MISHIN
-- Copyright (c) 1997-1999 Matra Datavision
-- Copyright (c) 1999-2012 OPEN CASCADE SAS
--
-- The content of this file is subject to the Open CASCADE Technology Public
-- License Version 6.5 (the "License"). You may not use the content of this file
-- except in compliance with the License. Please obtain a copy of the License
-- at http://www.opencascade.org and read it completely before using this file.
--
-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
--
-- The Original Code and all software distributed under the License is
-- distributed on an "AS IS" basis, without warranty of any kind, and the
-- Initial Developer hereby disclaims all such warranties, including without
-- limitation, any warranties of merchantability, fitness for a particular
-- purpose or non-infringement. Please see the License for the specific terms
-- and conditions governing the rights and limitations under the License.
class ApproxSurface from GeomConvert
---Purpose: A framework to convert a surface to a BSpline
-- surface. This is done by approximation to a BSpline
-- surface within a given tolerance.
uses
Pnt from gp,
Surface from Geom,
OffsetSurface from Geom,
BSplineSurface from Geom,
Shape from GeomAbs,
ApproxAFunc2Var from AdvApp2Var,
OutOfRange from Standard
raises OutOfRange from Standard
is
Create(Surf: Surface from Geom;
Tol3d: Real;
UContinuity : Shape from GeomAbs;
VContinuity : Shape from GeomAbs;
MaxDegU : Integer;
MaxDegV : Integer;
MaxSegments: Integer;
PrecisCode : Integer) returns ApproxSurface ;
---Purpose: Constructs a surface approximation framework defined by
-- - the conic Surf
-- - the tolerance value Tol3d
-- - the degree of continuity UContinuity, VContinuity
-- in the directions of the U and V parameters
-- - the highest degree MaxDegU, MaxDegV which
-- the polynomial defining the BSpline curve may
-- have in the directions of the U and V parameters
-- - the maximum number of segments MaxSegments
-- allowed in the resulting BSpline curve
-- - the index of precision PrecisCode.
Surface(me) returns BSplineSurface from Geom;
---Purpose: Returns the BSpline surface resulting from the approximation algorithm.
IsDone(me) returns Boolean from Standard;
--- Purpose: Returns Standard_True if the approximation has be done
HasResult(me) returns Boolean;
--- Purpose: Returns true if the approximation did come out with a result that
-- is not NECESSARILY within the required tolerance or a result
-- that is not recognized with the wished continuities.
MaxError(me) returns Real from Standard;
--- Purpose: Returns the greatest distance between a point on the
-- source conic surface and the BSpline surface
-- resulting from the approximation (>0 when an approximation
-- has been done, 0 if no approximation )
Dump(me ; o : in out OStream);
---Purpose: Prints on the stream o informations on the current state of the object.
fields
mySurf : Surface from Geom;
myIsDone : Boolean from Standard;
myHasResult: Boolean from Standard;
myBSplSurf : BSplineSurface from Geom;
myMaxError : Real from Standard;
end;