0024157: Parallelization of assembly part of BO
[occt.git] / src / StdPrs / StdPrs_WFDeflectionSurface.cdl
1 -- Created on: 1995-07-24
2 -- Created by: Modelistation
3 -- Copyright (c) 1995-1999 Matra Datavision
4 -- Copyright (c) 1999-2012 OPEN CASCADE SAS
5 --
6 -- The content of this file is subject to the Open CASCADE Technology Public
7 -- License Version 6.5 (the "License"). You may not use the content of this file
8 -- except in compliance with the License. Please obtain a copy of the License
9 -- at http://www.opencascade.org and read it completely before using this file.
10 --
11 -- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
12 -- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
13 --
14 -- The Original Code and all software distributed under the License is
15 -- distributed on an "AS IS" basis, without warranty of any kind, and the
16 -- Initial Developer hereby disclaims all such warranties, including without
17 -- limitation, any warranties of merchantability, fitness for a particular
18 -- purpose or non-infringement. Please see the License for the specific terms
19 -- and conditions governing the rights and limitations under the License.
20
21
22
23 class WFDeflectionSurface from StdPrs
24
25 inherits Root from Prs3d
26         --- Purpose: Draws a surface by drawing the isoparametric curves with respect to 
27         -- a maximal chordial deviation.
28         -- The number of isoparametric curves to be drawn and their color are
29         -- controlled by the furnished Drawer.
30  
31 uses
32     HSurface     from Adaptor3d,
33     Curve        from Adaptor3d,
34     Presentation from Prs3d,
35     Drawer       from Prs3d
36 is
37   
38  
39  
40     Add(myclass; aPresentation: Presentation from Prs3d;  
41                  aSurface     : HSurface     from Adaptor3d;
42                  aDrawer      : Drawer       from Prs3d);
43         ---Purpose: Adds the surface aSurface to the presentation object
44         -- aPresentation, and defines its boundaries and isoparameters.
45         -- The shape's display attributes are set in the attribute
46         -- manager aDrawer. These include whether deflection
47         -- is absolute or relative to the size of the shape.
48         -- The surface aSurface is a surface object from
49         -- Adaptor, and provides data from a Geom surface.
50         -- This makes it possible to use the surface in a geometric algorithm.
51         -- Note that this surface object is manipulated by handles.
52 end WFDeflectionSurface from StdPrs;
53
54
55