Abdullah Tahiri
dbbb1df6f8
Part: expose geometry clone support to python
=============================================
>>> geometries = ActiveSketch.Geometry
>>> geo0 = geometries[0]
>>> geo0.Tag
'a2b6883e-64d6-4348-b567-8b5e0a4896a0'
>>> geo1 = geo0.clone()
>>> geo1.Tag
'a2b6883e-64d6-4348-b567-8b5e0a4896a0'
>>> geo1.Radius = 3
>>> geo0.Tag
'a2b6883e-64d6-4348-b567-8b5e0a4896a0'
>>> geo0.Radius
30.157883192724587
>>> geo1.Tag
'a2b6883e-64d6-4348-b567-8b5e0a4896a0'
>>> geo1.Radius
3.0
2019-02-11 19:13:35 +01:00
..
2019-01-24 14:52:21 +01:00
2019-02-08 11:01:24 -02:00
2019-02-11 15:39:14 +01:00
2018-08-21 14:06:33 +02:00
2018-09-01 22:44:39 +02:00
2018-08-11 11:39:27 +02:00
2019-02-11 17:51:36 +01:00
2018-03-30 11:25:42 +02:00
2019-02-11 15:39:14 +01:00
2019-02-11 19:13:35 +01:00
2019-02-08 19:15:56 -02:00
2019-01-02 17:23:52 -02:00
2019-01-05 12:15:58 +01:00
2018-12-27 13:17:40 +01:00
2018-10-22 15:29:53 -03:00