0023024: Update headers of OCCT files
[occt.git] / src / GC / GC_MakeMirror.cdl
CommitLineData
b311480e 1-- Created on: 1992-09-28
2-- Created by: Remi GILET
3-- Copyright (c) 1992-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
7fd59977 21
22class MakeMirror
23
24from GC
25
26 ---Purpose: This class implements elementary construction algorithms for a
27 -- symmetrical transformation in 3D space about a point,
28 -- axis or plane. The result is a Geom_Transformation transformation.
29 -- A MakeMirror object provides a framework for:
30 -- - defining the construction of the transformation,
31 -- - implementing the construction algorithm, and
32 -- - consulting the result.
33
34uses Pnt from gp,
35 Ax1 from gp,
36 Ax2 from gp,
37 Dir from gp,
38 Pln from gp,
39 Lin from gp,
40 Transformation from Geom,
41 Real from Standard
42
43is
44
45Create(Point : Pnt from gp) returns MakeMirror;
46 ---Puprose: Make a symetry transformation of center <Point>.
47
48Create(Axis : Ax1 from gp) returns MakeMirror;
49 ---Puprose: Make a symetry transformation of axis <Axis>.
50
51Create(Line : Lin from gp) returns MakeMirror;
52 ---Puprose: Make a symetry transformation of axis <Line>.
53
54Create(Point : Pnt from gp;
55 Direc : Dir from gp) returns MakeMirror;
56 ---Purpose: Make a symetry transformation af axis defined by
57 -- <Point> and <Direc>.
58
59Create(Plane : Pln from gp) returns MakeMirror;
60 ---Purpose: Make a symetry transformation of plane <Plane>.
61
62Create(Plane : Ax2 from gp) returns MakeMirror;
63 ---Purpose: Make a symetry transformation of plane <Plane>.
64
65Value(me) returns Transformation from Geom
66 is static;
67 ---Purpose: Returns the constructed transformation.
68 ---C++: return const&
69
70Operator(me) returns Transformation from Geom
71 is static;
72 ---C++: return const&
73 ---C++: alias "Standard_EXPORT operator Handle_Geom_Transformation() const;"
74
75fields
76
77 TheMirror : Transformation from Geom;
78
79end MakeMirror;
80