0023948: Wrong intersection between a surface of revolution and a plane.
[occt.git] / src / StepGeom / StepGeom_UniformSurfaceAndRationalBSplineSurface.cdl
CommitLineData
b311480e 1-- Created on: 1995-12-01
2-- Created by: EXPRESS->CDL V0.2 Translator
3-- Copyright (c) 1995-1999 Matra Datavision
973c2be1 4-- Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 5--
973c2be1 6-- This file is part of Open CASCADE Technology software library.
b311480e 7--
d5f74e42 8-- This library is free software; you can redistribute it and/or modify it under
9-- the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 10-- by the Free Software Foundation, with special exception defined in the file
11-- OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12-- distribution for complete text of the license and disclaimer of any warranty.
b311480e 13--
973c2be1 14-- Alternatively, this file may be used under the terms of Open CASCADE
15-- commercial license or contractual agreement.
7fd59977 16
17class UniformSurfaceAndRationalBSplineSurface from StepGeom
18
19inherits BSplineSurface from StepGeom
20
21
22 --- This classe is an implementation of EXPRESS
23 -- ANDOR Subtype Declaration.
24uses
25
26 UniformSurface from StepGeom,
27 RationalBSplineSurface from StepGeom,
28 HAsciiString from TCollection,
29 Integer from Standard,
30 HArray2OfCartesianPoint from StepGeom,
31 BSplineSurfaceForm from StepGeom,
32 Logical from StepData,
33 HArray2OfReal from TColStd,
34 Real from Standard
35is
36
6e33d3ce 37 Create returns UniformSurfaceAndRationalBSplineSurface;
7fd59977 38 ---Purpose: Returns a UniformSurfaceAndRationalBSplineSurface
39
40
41 Init (me : mutable;
6e33d3ce 42 aName : HAsciiString from TCollection;
7fd59977 43 aUDegree : Integer from Standard;
44 aVDegree : Integer from Standard;
6e33d3ce 45 aControlPointsList : HArray2OfCartesianPoint from StepGeom;
7fd59977 46 aSurfaceForm : BSplineSurfaceForm from StepGeom;
47 aUClosed : Logical from StepData;
48 aVClosed : Logical from StepData;
49 aSelfIntersect : Logical from StepData) is redefined;
50
51 Init (me : mutable;
6e33d3ce 52 aName : HAsciiString from TCollection;
7fd59977 53 aUDegree : Integer from Standard;
54 aVDegree : Integer from Standard;
6e33d3ce 55 aControlPointsList : HArray2OfCartesianPoint from StepGeom;
7fd59977 56 aSurfaceForm : BSplineSurfaceForm from StepGeom;
57 aUClosed : Logical from StepData;
58 aVClosed : Logical from StepData;
59 aSelfIntersect : Logical from StepData;
6e33d3ce 60 aUniformSurface : UniformSurface from StepGeom;
61 aRationalBSplineSurface : RationalBSplineSurface from StepGeom) is virtual;
7fd59977 62
63 Init (me : mutable;
6e33d3ce 64 aName : HAsciiString from TCollection;
7fd59977 65 aUDegree : Integer from Standard;
66 aVDegree : Integer from Standard;
6e33d3ce 67 aControlPointsList : HArray2OfCartesianPoint from StepGeom;
7fd59977 68 aSurfaceForm : BSplineSurfaceForm from StepGeom;
69 aUClosed : Logical from StepData;
70 aVClosed : Logical from StepData;
71 aSelfIntersect : Logical from StepData;
6e33d3ce 72 aWeightsData : HArray2OfReal from TColStd) is virtual;
7fd59977 73
74 -- Specific Methods for Field Data Access --
75
6e33d3ce 76 SetUniformSurface(me : mutable; aUniformSurface : UniformSurface);
77 UniformSurface (me) returns UniformSurface;
78 SetRationalBSplineSurface(me : mutable; aRationalBSplineSurface : RationalBSplineSurface);
79 RationalBSplineSurface (me) returns RationalBSplineSurface;
7fd59977 80
81 -- Specific Methods for ANDOR Field Data Access --
82
6e33d3ce 83 SetWeightsData(me : mutable; aWeightsData : HArray2OfReal);
84 WeightsData (me) returns HArray2OfReal;
7fd59977 85 WeightsDataValue (me; num1 : Integer; num2 : Integer) returns Real;
86 NbWeightsDataI (me) returns Integer;
87 NbWeightsDataJ (me) returns Integer;
88
89 -- Specific Methods for ANDOR Field Data Access --
90
91
92fields
93
94 uniformSurface : UniformSurface from StepGeom;
95 rationalBSplineSurface : RationalBSplineSurface from StepGeom;
96
97end UniformSurfaceAndRationalBSplineSurface;