0023024: Update headers of OCCT files
[occt.git] / src / gce / gce_MakeMirror2d.cdl
CommitLineData
b311480e 1-- Created on: 1992-09-01
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 MakeMirror2d
23
24from gce
25
26 ---Purpose: This class implements elementary construction algorithms for a
27 -- symmetrical transformation in 2D space about a point
28 -- or axis. The result is a gp_Trsf2d transformation.
29 -- A MakeMirror2d object provides a framework for:
30 -- - defining the construction of the transformation,
31 -- - implementing the construction algorithm, and consulting the result.
32
33uses Pnt2d from gp,
34 Ax2d from gp,
35 Dir2d from gp,
36 Lin2d from gp,
37 Trsf2d from gp,
38 Real from Standard
39
40is
41
42Create(Point : Pnt2d from gp) returns MakeMirror2d;
43 ---Puprose: Makes a symmetry transformation of center <Point>.
44
45Create(Axis : Ax2d from gp) returns MakeMirror2d;
46 ---Puprose: Makes a symmetry transformation of axis <Axis>.
47
48Create(Line : Lin2d from gp) returns MakeMirror2d;
49 ---Puprose: Makes a symmetry transformation of axis <Line>.
50
51Create(Point : Pnt2d from gp;
52 Direc : Dir2d from gp) returns MakeMirror2d;
53 ---Purpose: Makes a symmetry transformation af axis defined by
54 -- <Point> and <Direc>.
55
56Value(me) returns Trsf2d from gp
57 is static;
58 ---C++: return const&
59 ---Purpose: Returns the constructed transformation.
60
61Operator(me) returns Trsf2d from gp
62 is static;
63 ---C++: return const&
64 ---C++: alias "Standard_EXPORT operator gp_Trsf2d() const;"
65
66fields
67
68 TheMirror2d : Trsf2d from gp;
69
70end MakeMirror2d;
71