mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-17 23:53:20 +08:00
71 lines
2.6 KiB
Plaintext
Executable File
71 lines
2.6 KiB
Plaintext
Executable File
-- Created on: 1996-04-16
|
|
-- Created by: Joelle CHAUVET
|
|
-- Copyright (c) 1996-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.
|
|
|
|
-- Modified: Mon Dec 9 10:30:56 1996
|
|
-- by: Joelle CHAUVET
|
|
-- G1135 : Empty constructor
|
|
|
|
|
|
class Context from AdvApp2Var
|
|
|
|
uses
|
|
HArray1OfReal from TColStd,
|
|
HArray2OfReal from TColStd
|
|
|
|
is
|
|
Create returns Context;
|
|
Create(ifav,iu,iv : Integer; nlimu,nlimv : Integer; iprecis : Integer;
|
|
nb1Dss,nb2Dss,nb3Dss : Integer; tol1D,tol2D,tol3D : HArray1OfReal;
|
|
tof1D,tof2D,tof3D : HArray2OfReal) returns Context;
|
|
TotalDimension(me) returns Integer;
|
|
TotalNumberSSP(me) returns Integer;
|
|
FavorIso(me) returns Integer;
|
|
UOrder(me) returns Integer;
|
|
VOrder(me) returns Integer;
|
|
ULimit(me) returns Integer;
|
|
VLimit(me) returns Integer;
|
|
UJacDeg(me) returns Integer;
|
|
VJacDeg(me) returns Integer;
|
|
UJacMax(me) returns HArray1OfReal;
|
|
VJacMax(me) returns HArray1OfReal;
|
|
URoots(me) returns HArray1OfReal;
|
|
VRoots(me) returns HArray1OfReal;
|
|
UGauss(me) returns HArray1OfReal;
|
|
VGauss(me) returns HArray1OfReal;
|
|
IToler(me) returns HArray1OfReal;
|
|
FToler(me) returns HArray2OfReal;
|
|
CToler(me) returns HArray2OfReal;
|
|
|
|
fields
|
|
myFav : Integer;
|
|
myOrdU, myOrdV : Integer;
|
|
myLimU, myLimV : Integer;
|
|
myNb1DSS, myNb2DSS, myNb3DSS: Integer;
|
|
myNbURoot, myNbVRoot : Integer;
|
|
myJDegU, myJDegV : Integer;
|
|
myJMaxU, myJMaxV : HArray1OfReal;
|
|
myURoots, myVRoots : HArray1OfReal;
|
|
myUGauss, myVGauss : HArray1OfReal;
|
|
myInternalTol : HArray1OfReal;
|
|
myFrontierTol : HArray2OfReal;
|
|
myCuttingTol : HArray2OfReal;
|
|
|
|
end Context;
|