@@ -10,7 +10,7 @@ Example 1
1010
1111Get the center of gravity for the part body 'PartBody'.
1212
13- `Example 1 <https://github.com/evereux/pycatia/blob/master/example_001.py >`_
13+ `Example 1 <https://github.com/evereux/pycatia/blob/master/examples/ example_001.py >`_
1414
1515
1616Example 2
@@ -20,23 +20,23 @@ Get all the points in the geometrical set 'Points' and output co-ordinate to con
2020
2121Create your own CATPart with a Geometrical Set called construction_points. Add some points to the Geometrical Set.
2222
23- `Example 2 <https://github.com/evereux/pycatia/blob/master/example_002.py >`_
23+ `Example 2 <https://github.com/evereux/pycatia/blob/master/examples/ example_002.py >`_
2424
2525
2626Example 3
2727---------
2828
2929Find all points in the CATPart and print to console and export to csv.
3030
31- `Example 3 <https://github.com/evereux/pycatia/blob/master/example_003.py >`_
31+ `Example 3 <https://github.com/evereux/pycatia/blob/master/examples/ example_003.py >`_
3232
3333
3434Example 4
3535---------
3636
3737Loop through a CATProduct and find if sub component is a CATPart or CATProduct.
3838
39- `Example 4 <https://github.com/evereux/pycatia/blob/master/example_004.py >`_
39+ `Example 4 <https://github.com/evereux/pycatia/blob/master/examples/ example_004.py >`_
4040
4141
4242Example 5
@@ -49,7 +49,7 @@ Formatting of csv data should be:
4949
5050 <point_name>,<x coordinate>,<y coordinate>,<z coordinate>
5151
52- `Example 5 <https://github.com/evereux/pycatia/blob/master/example_005.py >`_
52+ `Example 5 <https://github.com/evereux/pycatia/blob/master/examples/ example_005.py >`_
5353
5454
5555Example 6
@@ -61,31 +61,31 @@ Export catia file to igs.
6161
6262Close a catia file.
6363
64- `Example 6 <https://github.com/evereux/pycatia/blob/master/example_006.py >`_
64+ `Example 6 <https://github.com/evereux/pycatia/blob/master/examples/ example_006.py >`_
6565
6666
6767Example 7
6868---------
6969
7070Use the context manager to open CATIA documents and close.
7171
72- `Example 7 <https://github.com/evereux/pycatia/blob/master/example_007.py >`_
72+ `Example 7 <https://github.com/evereux/pycatia/blob/master/examples/ example_007.py >`_
7373
7474
7575Example 8
7676---------
7777
7878Open all CATParts in source directory and save to IGS in target directory.
7979
80- `Example 8 <https://github.com/evereux/pycatia/blob/master/example_008.py >`_
80+ `Example 8 <https://github.com/evereux/pycatia/blob/master/examples/ example_008.py >`_
8181
8282
8383Example 9
8484---------
8585
8686Get the position matrix of products (CATPart or CATProduct) in product.
8787
88- `Example 9 <https://github.com/evereux/pycatia/blob/master/example_009.py >`_
88+ `Example 9 <https://github.com/evereux/pycatia/blob/master/examples/ example_009.py >`_
8989
9090
9191Example 10
@@ -95,15 +95,15 @@ Loop through a CATProduct and analyse children if CATPart.
9595
9696Only goes two levels deep.
9797
98- `Example 10 <https://github.com/evereux/pycatia/blob/master/example_010.py >`_
98+ `Example 10 <https://github.com/evereux/pycatia/blob/master/examples/ example_010.py >`_
9999
100100
101101Example 11
102102----------
103103
104104Move the first child in product.
105105
106- `Example 11 <https://github.com/evereux/pycatia/blob/master/example_011.py >`_
106+ `Example 11 <https://github.com/evereux/pycatia/blob/master/examples/ example_011.py >`_
107107
108108
109109Example 12
@@ -114,31 +114,31 @@ each parameter along with its name, value and its associated parameter set.
114114
115115# todo: need to create a source part to support this example.
116116
117- `Example 12 <https://github.com/evereux/pycatia/blob/master/example_012.py >`_
117+ `Example 12 <https://github.com/evereux/pycatia/blob/master/examples/ example_012.py >`_
118118
119119
120120Example 13
121121----------
122122
1231233D Points, Spline, Extrusion and Generate Thickness.
124124
125- `Example 13 <https://github.com/evereux/pycatia/blob/master/example_013.py >`_
125+ `Example 13 <https://github.com/evereux/pycatia/blob/master/examples/ example_013.py >`_
126126
127127
128128Example 14
129129----------
130130
131131Logging.
132132
133- `Example 14 <https://github.com/evereux/pycatia/blob/master/example_014.py >`_
133+ `Example 14 <https://github.com/evereux/pycatia/blob/master/examples/ example_014.py >`_
134134
135135
136136Example 15
137137----------
138138
139139Draw a line between two points.
140140
141- `Example 15 <https://github.com/evereux/pycatia/blob/master/example_016.py >`_
141+ `Example 15 <https://github.com/evereux/pycatia/blob/master/examples/ example_016.py >`_
142142
143143
144144Example 16
@@ -147,7 +147,7 @@ Example 16
147147Creates a square in a sketch and fully constrains it. Sketch then used to pad.
148148
149149
150- `Example 16 <https://github.com/evereux/pycatia/blob/master/example_016.py >`_
150+ `Example 16 <https://github.com/evereux/pycatia/blob/master/examples/ example_016.py >`_
151151
152152
153153Example 17
@@ -156,7 +156,7 @@ Example 17
156156Drafting: create a border template in the background view of the currently opened A0 landscape CATDrawing.
157157
158158
159- `Example 17 <https://github.com/evereux/pycatia/blob/master/example_017.py >`_
159+ `Example 17 <https://github.com/evereux/pycatia/blob/master/examples/ example_017.py >`_
160160
161161
162162Example 18
@@ -174,7 +174,7 @@ Example 18
174174Assembly Design: Reorder a Product tree alphabetically. The Product shall
175175already be loaded.
176176
177- `Example 18 <https://github.com/evereux/pycatia/blob/master/example_018.py >`_
177+ `Example 18 <https://github.com/evereux/pycatia/blob/master/examples/ example_018.py >`_
178178
179179
180180Example 19
@@ -183,15 +183,15 @@ Example 19
183183Searching and changing visual properties. Find all Red points and make them
184184Pink.
185185
186- `Example 19 <https://github.com/evereux/pycatia/blob/master/example_019.py >`_
186+ `Example 19 <https://github.com/evereux/pycatia/blob/master/examples/ example_019.py >`_
187187
188188
189189Example 20
190190----------
191191
192192This creates a message box with the buttons abort, retry ignore and displays the Warning Query icon.
193193
194- `Example 20 <https://github.com/evereux/pycatia/blob/master/example_020.py >`_
194+ `Example 20 <https://github.com/evereux/pycatia/blob/master/examples/ example_020.py >`_
195195
196196
197197Example 21
@@ -200,7 +200,7 @@ Example 21
200200Sequentially rename all points in geometric set (hybrid body) Points in the geometric set MasterGeometry.
201201
202202
203- `Example 21 <https://github.com/evereux/pycatia/blob/master/example_021.py >`_
203+ `Example 21 <https://github.com/evereux/pycatia/blob/master/examples/ example_021.py >`_
204204
205205
206206Example 22
@@ -215,7 +215,7 @@ Requires an active part document open with a geometrical set called
215215and line generated using HybridShapeLinePtPt
216216
217217
218- `Example 22 <https://github.com/evereux/pycatia/blob/master/example_022.py >`_
218+ `Example 22 <https://github.com/evereux/pycatia/blob/master/examples/ example_022.py >`_
219219
220220
221221Example 23
@@ -224,21 +224,21 @@ Example 23
224224Fix the first Sub Product in Product using constraints. The Sketch examples
225225also show further usage of constraints.
226226
227- `Example 23 <https://github.com/evereux/pycatia/blob/master/example_023.py >`_
227+ `Example 23 <https://github.com/evereux/pycatia/blob/master/examples/ example_023.py >`_
228228
229229Example 24
230230----------
231231
232232Basic license checking.
233233
234- `Example 24 <https://github.com/evereux/pycatia/blob/master/example_024.py >`_
234+ `Example 24 <https://github.com/evereux/pycatia/blob/master/examples/ example_024.py >`_
235235
236236Example 25
237237----------
238238
239239Write the contents of a product to a html file.
240240
241- `Example 25 <https://github.com/evereux/pycatia/blob/master/example_025.py >`_
241+ `Example 25 <https://github.com/evereux/pycatia/blob/master/examples/ example_025.py >`_
242242
243243Example 26
244244----------
@@ -252,7 +252,7 @@ Prompt the user to select a product and get it's bounding box parameters
252252 product you have selected.
253253
254254
255- `Example 26 <https://github.com/evereux/pycatia/blob/master/example_026.py >`_
255+ `Example 26 <https://github.com/evereux/pycatia/blob/master/examples/ example_026.py >`_
256256
257257
258258Example 27
@@ -264,4 +264,4 @@ END VIEW and ISO pngs for each part.
264264The tree is turned off and the background turned white for the screen
265265capture and then turned back on.
266266
267- `Example 27 <https://github.com/evereux/pycatia/blob/master/example_027.py >`_
267+ `Example 27 <https://github.com/evereux/pycatia/blob/master/examples/ example_027.py >`_
0 commit comments