File: rotate.py

package info (click to toggle)
pythoncad 0.1.35-4
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,536 kB
  • ctags: 4,286
  • sloc: python: 62,752; sh: 743; makefile: 39
file content (499 lines) | stat: -rw-r--r-- 17,361 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
#
# Copyright (c) 2006 Art Haas
#
# This file is part of PythonCAD.
# 
# PythonCAD is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# PythonCAD is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with PythonCAD; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
#
#
# code to handle rotating objects
#

from math import hypot, fmod, atan2, sin, cos, pi

from PythonCAD.Generic.point import Point
from PythonCAD.Generic.segment import Segment
from PythonCAD.Generic.circle import Circle
from PythonCAD.Generic.arc import Arc
from PythonCAD.Generic.hcline import HCLine
from PythonCAD.Generic.vcline import VCLine
from PythonCAD.Generic.acline import ACLine
from PythonCAD.Generic.segjoint import Chamfer, Fillet
from PythonCAD.Generic.cline import CLine
from PythonCAD.Generic.ccircle import CCircle
from PythonCAD.Generic.leader import Leader
from PythonCAD.Generic.polyline import Polyline
from PythonCAD.Generic.text import TextBlock
from PythonCAD.Generic.dimension import Dimension, DimString
from PythonCAD.Generic.dimension import LinearDimension
from PythonCAD.Generic.dimension import AngularDimension
from PythonCAD.Generic import util

_twopi = (2.0 * pi)
_dtr = (pi/180.0)

def _calc_coords(pt, cx, cy, ra):
    _px, _py = pt.getCoords()
    _r = hypot((_px - cx), (_py - cy))
    _aorig = atan2((_py - cy), (_px - cx))
    _anew = fmod((_aorig + ra), _twopi)
    _nx = cx + (_r * cos(_anew))
    _ny = cy + (_r * sin(_anew))
    return (_nx, _ny)

def _xfrm_point(pt, objdict, cx, cy, ra):
    _layer = pt.getParent()
    _pid = id(pt)
    _np = None
    _x, _y = _calc_coords(pt, cx, cy, ra)
    if _can_move(pt, objdict) and objdict.get(_pid) is not False:
        pt.setCoords(_x, _y)
    else:
        _pts = _layer.find('point', _x, _y)
        if len(_pts) == 0:
            _np = Point(_x, _y)
            _layer.addObject(_np)
        else:
            _np = _most_used(_pts)
    return _np
    
def _adjust_dimensions(op, np):
    _objs = 0
    _dims = []
    _reset = True
    for _user in op.getUsers():
        if isinstance(_user, Dimension):
            _dims.append(_user)
        else:
            _objs = _objs + 1
            if _objs > 1:
                _reset = False
                break
    if _reset:
        for _dim in _dims:
            if isinstance(_dim, LinearDimension):
                _p1, _p2 = _dim.getDimPoints()
                if _p1 is op:
                    _user.setP1(np)
                elif _p2 is op:
                    _user.setP2(np)
            elif isinstance(_dim, AngularDimension):
                _vp, _p1, _p2 = _dim.getDimPoints()
                if _vp is op:
                    _user.setVertexPoint(np)
                elif _p1 is op:
                    _user.setP1(np)
                elif _p2 is op:
                    _user.setP2(np)
            else:
                raise TypeError, "Unknown dimension type: " + `type(_dim)`
    return _reset

def _most_used(plist):
    _pmax = plist.pop()
    _max = _pmax.countUsers()
    for _pt in plist:
        _count = _pt.countUsers()
        if _count > _max:
            _max = _count
            _pmax = _pt
    return _pmax

def _used_by(obj, plist):
    _objpt = None
    for _pt in plist:
        for _user in _pt.getUsers():
            if _user is obj:
                _objpt = _pt
                break
        if _objpt is not None:
            break
    return _objpt
    
def _can_move(obj, objdict):
    for _user in obj.getUsers():
        if id(_user) not in objdict:
            return False
    return True

def _rotate_acline(obj, objdict, cx, cy, ra):
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "ACLine parent is None"
    _lp = obj.getLocation()
    if _lp.getParent() is not _layer:
        raise RuntimeError, "ACLine/Point parent object conflict!"
    _x, _y = _calc_coords(_lp, cx, cy, ra)
    _pts = _layer.find('point', _x, _y)
    if len(_pts) == 0:
        _np = Point(_x, _y)
        _layer.addObject(_np)
    else:
        _np = _most_used(_pts)
    _racl = (obj.getAngle() * _dtr) + ra
    obj.setLocation(_np)
    obj.setAngle(_racl/_dtr)
    if _adjust_dimension(_lp, _np):
        _layer.delObject(_lp)
    _pid = id(_lp)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False

def _rotate_vcline(obj, objdict, cx, cy, ra):
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "VCLine parent is None"
    _lp = obj.getLocation()
    if _lp.getParent() is not _layer:
        raise RuntimeError, "VCLine/Point parent object conflict!"
    _x, _y = _calc_coords(_lp, cx, cy, ra)
    _pts = _layer.find('point', _x, _y)
    if len(_pts) == 0:
        _np = Point(_x, _y)
        _layer.addObject(_np)
    else:
        _np = _most_used(_pts)
    _da = ra/_dtr
    if abs(fmod(_da, 180)) < 1e-10:
        obj.setLocation(_np)
        if _adjust_dimension(_lp, _np):
            _layer.delObject(_lp)
    elif abs(fmod(_da, 90.0)) < 1e-10:
        _layer.addObject(HCLine(_np))
        if _adjust_dimension(_lp, _np):
            _layer.delObject(obj)
    else:
        _layer.addObject(ACLine(_np, _da))
        _layer.delObject(obj)
    _pid = id(_lp)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False

def _rotate_hcline(obj, objdict, cx, cy, ra):
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "HCLine parent is None"
    _lp = obj.getLocation()
    if _lp.getParent() is not _layer:
        raise RuntimeError, "HCLine/Point parent object conflict!"
    _x, _y = _calc_coords(_lp, cx, cy, ra)
    _pts = _layer.find('point', _x, _y)
    if len(_pts) == 0:
        _np = Point(_x, _y)
        _layer.addObject(_np)
    else:
        _np = _most_used(_pts)
    _da = ra/_dtr
    if abs(fmod(_da, 180.0)) < 1e-10:
        obj.setLocation(_np)
        if _adjust_dimension(_lp, _np):
            _layer.delObject(_lp)
    elif abs(fmod(_da, 90.0)) < 1e-10:
        _layer.addObject(VCLine(_np))
        if _adjust_dimension(_lp, _np):
            _layer.delObject(obj)
    else:
        _layer.addObject(ACLine(_np, _da))
        _layer.delObject(obj)
    _pid = id(_lp)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False

def _rotate_polyline(obj, objdict, cx, cy, ra):
    _pts = obj.getPoints()
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "Polyline parent is None"
    _move = True
    for _pt in _pts:
        if _pt.getParent() is not _layer:
            raise RuntimeError, "Polyline/point parent object conflict!"
        _move = (_can_move(_pt, objdict) and
                 (objdict.get(id(_pt)) is not False))
        if not _move:
            break
    if _move:
        for _pt in _pts:
            _x, _y = _calc_coords(_pt, cx, cy, ra)
            _pt.setCoords(_x, _y)
            _pid = id(_pt)
            objdict[_pid] = False
    else:
        for _i in range(len(_pts)):
            _pt = _pts[_i]
            if objdict.get(_pid) is True:
                _x, _y = _calc_coords(_pt, cx, cy, ra)
                _pts = _layer.find('point', _x, _y)
                if len(_pts) == 0:
                    _np = Point(_x, _y)
                    _layer.addObject(_np)
                else:
                    _np = _most_used(_pts)
                obj.setPoint(_i, _np)
                objdict[_pid] = False
                _layer.delObject(_pt)

def _rotate_leader(obj, objdict, cx, cy, ra):
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "Leader parent is None"
    _p1, _p2, _p3 = obj.getPoints()    
    if _p1.getParent() is not _layer:
        raise RuntimeError, "Leader/P1 parent object conflict!"
    if _p2.getParent() is not _layer:
        raise RuntimeError, "Leader/P2 parent object conflict!"
    if _p3.getParent() is not _layer:
        raise RuntimeError, "Leader/P3 parent object conflict!"
    _np = _xfrm_point(_p1, objdict, cx, cy, ra)
    if _np is not None:
        obj.setP1(_np)
        if _adjust_dimensions(_p1, _np):
            _layer.delObject(_p1)
    _np = _xfrm_point(_p2, objdict, cx, cy, ra)
    if _np is not None:
        obj.setP2(_np)
        if __adjust_dimensions(_p2, _np):
            _layer.delObject(_p2)
    _np = _xfrm_point(_p3, objdict, cx, cy, ra)
    if _np is not None:
        obj.setP3(_np)
        if __adjust_dimensions(_p3, _np):
            _layer.delObject(_p3)
    _pid = id(_p1)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False
    _pid = id(_p2)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False
    _pid = id(_p3)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False

def _adjust_endpoint(arc, pt, objdict, cx, cy, ra):
    _layer = arc.getParent()
    if pt.getParent() is not _layer:
        raise RuntimeError, "Arc/Endpoint parent object conflict!"
    _pid = id(pt)
    _users = []
    for _user in pt.getUsers():
        _users.append(_user)
    _np = None
    _x, _y = _calc_coords(pt, cx, cy, ra)    
    if len(_users) == 1 and _users[0] is arc:
        if _can_move(pt, objdict) and objdict.get(_pid) is not False:
            pt.setCoords(_x, _y)
        else:
            _pts = _layer.find('point', _x, _y)
            if len(_pts) == 0:
                _np = Point(_x, _y)
                _layer.addObject(_np)
            else:
                _np = _most_used(_pts)
    else:
        pt.freeUser(arc)
        _pts = _layer.find('point', _x, _y)
        if len(_pts) == 0:
            _np = Point(_x, _y)
            _layer.addObject(_np)
        else:
            _np = _most_used(_pts)
    if _np is not None:
        _np.storeUser(arc)
        if _adjust_dimensions(pt, _np):
            _layer.delObject(pt)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False
    
def _rotate_arc(obj, objdict, cx, cy, ra):
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "Arc parent is None"
    _cp = obj.getCenter()    
    if _cp.getParent() is not _layer:
        raise RuntimeError, "Arc/center parent object conflict!"
    _ep1, _ep2 = obj.getEndpoints()
    _pts = _layer.find('point', _ep1[0], _ep1[1])
    _ep = _used_by(obj, _pts)
    if _ep is None:
        raise RuntimeError, "Lost Arc first endpoint: " + str(_ep)
    _adjust_endpoint(obj, _ep, objdict, cx, cy, ra)
    _pts = _layer.find('point', _ep2[0], _ep2[1])
    _ep = _used_by(obj, _pts)
    if _ep is None:
        raise RuntimeError, "Lost Arc second endpoint: " + str(_ep)
    _adjust_endpoint(obj, _ep, objdict, cx, cy, ra)
    _np = _xfrm_point(_cp, objdict, cx, cy, ra)
    if _np is not None:
        obj.setCenter(_np)
        if _adjust_dimensions(_cp, _np):
            _layer.delObject(_cp)
    _da = ra/_dtr
    obj.setStartAngle(obj.getStartAngle() + _da)
    obj.setEndAngle(obj.getEndAngle() + _da)
    _pid = id(_cp)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False

def _rotate_circ_ccirc(obj, objdict, cx, cy, ra):
    if isinstance(obj, Circle):
        _objtype = 'Circle'
    elif isinstance(obj, CCircle):
        _objtype = 'CCircle'
    else:
        raise TypeError, "Unexpected object type: " + `type(obj)`
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "%s parent is None" % _objtype
    _cp = obj.getCenter()    
    if _cp.getParent() is not _layer:
        raise RuntimeError, "%s/center parent object conflict!" % _objtype
    _np = _xfrm_point(_cp, objdict, cx, cy, ra)
    if _np is not None:
        obj.setCenter(_np)
        if _adjust_dimensions(_cp, _np):
            _layer.delObject(_cp)
    _pid = id(_cp)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False

def _rotate_seg_cline(obj, objdict, cx, cy, ra):
    if isinstance(obj, Segment):
        _p1, _p2 = obj.getEndpoints()
        _objtype = 'Segment'
    elif isinstance(obj, CLine):
        _p1, _p2 = obj.getKeypoints()
        _objtype = 'CLine'
    else:
        raise TypeError, "Unexpected object type: " + `type(obj)`
    _layer = obj.getParent()
    if _layer is None:
        raise RuntimeError, "%s parent is None" % _objtype
    if _p1.getParent() is not _layer:
        raise RuntimeError, "%s/P1 parent object conflict!" % _objtype
    if _p2.getParent() is not _layer:
        raise RuntimeError, "%s/P2 parent object conflict!" % _objtype
    _np = _xfrm_point(_p1, objdict, cx, cy, ra)
    if _np is not None:
        obj.setP1(_np)
        if _adjust_dimensions(_p1, _np):
            _layer.delObject(_p1)
    _np = _xfrm_point(_p2, objdict, cx, cy, ra)
    if _np is not None:
        obj.setP2(_np)
        if _adjust_dimensions(_p2, _np):
            _layer.delObject(_p2)
    _pid = id(_p1)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False
    _pid = id(_p2)
    if objdict.get(_pid) is not False:
        objdict[_pid] = False

def _adjust_point_users(pt, objdict, da):
    _layer = pt.getParent()
    for _user in pt.getUsers():
        _uid = id(_user)
        if _uid in objdict:
            if isinstance(_user, HCLine) and _layer is not None:
                if abs(fmod(da, 180.0)) < 1e-10:
                    objdict[_uid] = False
                elif abs(fmod(da, 90.0)) < 1e-10:
                    _layer.addObject(VCLine(pt))
                    _layer.delObject(_user)
                    del objdict[_uid]
                else:
                    _layer.addObject(ACLine(pt, da))
                    _layer.delObject(_user)
                    del objdict[_uid]
            elif isinstance(_user, VCLine) and _layer is not None:
                if abs(fmod(da, 180.0)) < 1e-10:
                    objdict[_uid] = False
                elif abs(fmod(da, 90.0)) < 1e-10:
                    _layer.addObject(HCLine(pt))
                    _layer.delObject(_user)
                    del objdict[_uid]
                else:
                    _layer.addObject(ACLine(pt, da))
                    _layer.delObject(_user)
                    del objdict[_uid]
            elif isinstance(_user, ACLine) and _layer is not None:
                _user.setAngle(_user.getAngle() + da)
                objdict[_uid] = False
            else:
                if not isinstance(_user, Dimension):
                    objdict[_uid] = False
    
def rotate_objects(objs, cx, cy, angle):
    """Rotate a list of objects.

rotate_objects(objs, cx, cy, angle)

objs: A list or tuple containing the objects to move.
cx: Rotation center point 'x' coordinate
cy: Rotation center point 'y' coordinate
angle: Angular amount of rotation
    """
    if not isinstance(objs, (list, tuple)):
        raise TypeError, "Invalid object list/tuple: " + `type(objs)`
    _cx = util.get_float(cx)
    _cy = util.get_float(cy)
    _da = fmod(util.get_float(angle), 360.0)
    _ra = _da * _dtr # value in radians
    if abs(_ra) < 1e-10:
        return
    _objdict = {}
    _fillets = []
    for _obj in objs:
        if not isinstance(_obj, DimString):
            _objdict[id(_obj)] = True
    for _obj in objs:
        _oid = id(_obj)
        if _oid not in _objdict:
            continue
        if _objdict[_oid]:
            if isinstance(_obj, Point):
                _x, _y = _calc_coords(_obj, _cx, _cy, _ra)
                _obj.setCoords(_x, _y)
                _adjust_point_users(_obj, _objdict, _da)
            elif isinstance(_obj, (Segment, CLine)):
                _rotate_seg_cline(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, (Circle, CCircle)):
                _rotate_circ_ccirc(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, Arc):
                _rotate_arc(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, Leader):
                _rotate_leader(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, Polyline):
                _rotate_polyline(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, (TextBlock, Dimension)) and False:
                _obj.move(_cx, _cy)
            elif isinstance(_obj, HCLine):
                _rotate_hcline(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, VCLine):
                _rotate_vcline(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, ACLine):
                _rotate_acline(_obj, _objdict, _cx, _cy, _ra)
            elif isinstance(_obj, (Chamfer, Fillet)) and False:
                _s1, _s2 = _obj.getSegments()
                if id(_s1) not in _objdict or id(_s2) not in _objdict:
                    _layer = _obj.getParent()
                    _layer.delObject(_obj)
                if isinstance(_obj, Fillet):
                    _fillets.append(_obj)
            else:
                print "Unexpected entity type: " + `type(_obj)`
            _objdict[_oid] = False
        for _obj in _fillets:
            _obj._calculateCenter() # FIXME