]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOM_PY/sketcher.py
Salome HOME
0021684: EDF 2221 : Display the arguments and the name of the operations
[modules/geom.git] / src / GEOM_PY / sketcher.py
1 # -*- coding: iso-8859-1 -*-
2 #
3 # Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 """
22 This module provides the user with a simple python API to realize
23 various sketches from the GEOM text user interface.
24
25 Example::
26
27     from salome.geom.sketcher import Sketcher
28
29     # Create the sketch
30     mysketcher = Sketcher()
31     mysketcher.startAtPoint(0,0)
32     mysketcher.translateToPoint(100,0)
33     mysketcher.translateWithAngleAndLength(30,100)
34     mysketcher.intersectYWithAngle(15,100)
35     mysketcher.close()
36
37     # Get the geom object
38     wire = mysketcher.getGeomWire()
39
40     # Put it in the study
41     from salome.geom import geomBuilder
42     geompy = geomBuilder.New(salome.myStudy)
43     geompy.addToStudy( wire, 'mysketch' )
44
45 Additionnal examples can be found as unit tests in the source code.
46 """
47
48 geompyEnable = True
49 try:
50     import salome
51     salome.salome_init()
52     import GEOM
53     from salome.geom import geomBuilder
54     geompy = geomBuilder.New(salome.myStudy)
55 except:
56     geompyEnable = False
57     
58
59 class Sketcher:
60
61     __sketch = None
62     __xstart = 0
63     __ystart = 0
64
65     def __init__(self):
66         self.__sketch = "Sketcher:"
67
68     def startAtPoint(self,x=0,y=0):
69         self.__sketch = "Sketcher:F "+str(x)+" "+str(y)
70         # the data x and y are registered to process the ending closure.
71         self.__xstart = x
72         self.__ystart = y
73
74     def translateToPoint(self,x=10,y=0):
75         '''segment->point->absolute'''
76         self.__sketch = self.__sketch + ":TT "+str(x)+" "+str(y) 
77
78     def translateWithVector(self,deltax=10,deltay=0):
79         '''segment->point->relative'''
80         self.__sketch = self.__sketch + ":T "+str(deltax)+" "+str(deltay) 
81
82     #def translateToSelection(self,vertex):
83     #    '''segment->point->selection'''
84     #    self.__sketch = self.__sketch + ":T "+str(deltax)+" "+str(deltay) 
85
86     def translateWithAngleAndLength(self,angle=30,length=100):
87         '''segment->direction->angle+length'''
88         self.__sketch = self.__sketch + ":R "+str(angle)+":L "+str(length)
89
90     def intersectXWithAngle(self,angle=30,x=100):
91         '''segment->direction->angle+length'''
92         self.__sketch = self.__sketch + ":R "+str(angle)+":IX "+str(x)
93
94     def intersectYWithAngle(self,angle=30,y=100):
95         '''segment->direction->angle+length'''
96         self.__sketch = self.__sketch + ":R "+str(angle)+":IY "+str(y)
97
98     def close(self):
99         '''
100         add a segment to reach the starting point and get a closed wire.
101         '''
102         self.__sketch = self.__sketch + ":WW"
103
104     def toString(self):
105         return self.__sketch
106
107     def getGeomWire(self):
108         if not geompyEnable:
109             return None
110         wire = geompy.MakeSketcher(self.__sketch, [0, 0, 0, 0, 0, 1, 1, 0, -0])
111         return wire
112 #
113 # ===============================================================
114 # Use cases and unit tests
115 # ===============================================================
116 #
117 def TEST_toString():
118     mysketcher = Sketcher()
119
120     mysketcher.startAtPoint(1.234,4.321)
121     mysketcher.translateToPoint(2.234,5.321)
122
123     expectedResult = "Sketcher:F 1.234 4.321:TT 2.234 5.321"
124     result = mysketcher.toString()
125     print "sketcher=",mysketcher.toString()
126     if result == expectedResult:
127         print "OK"
128     else:
129         print "Not OK"
130
131 def TEST_usingGeom():
132     mysketcher = Sketcher()
133     mysketcher.startAtPoint(0,0)
134     mysketcher.translateToPoint(100,0)
135     mysketcher.translateWithAngleAndLength(30,100)
136     mysketcher.intersectYWithAngle(15,100)
137     mysketcher.close()
138     wire = mysketcher.getGeomWire()
139     if geompyEnable:
140         geompy.addToStudy( wire, "Sketch" )
141         
142
143 if __name__ == "__main__":
144     #TEST_toString()
145     TEST_usingGeom()