@@ -147,9 +147,9 @@ def rotation(self) -> float:
147
147
"""
148
148
try :
149
149
return self .params .get_param ("rotation" )
150
- except Exception :
151
- print ("Could not find rotation for component" )
152
- raise KeyError
150
+ except Exception as error :
151
+ print ("Could not find rotation for component" , error )
152
+ raise Exception ( "Could not find rotation for component" ) from error
153
153
154
154
@rotation .setter
155
155
def rotation (self , value ):
@@ -258,15 +258,16 @@ def rotate_point(
258
258
Returns:
259
259
Tuple[float, float]: A tuple containing the rotated coordinates
260
260
"""
261
+ # pylint: disable=invalid-name, too-many-locals
261
262
# Setup the center to be used the translation matrices
262
263
center_x = self .xspan / 2
263
264
center_y = self .yspan / 2
264
265
265
266
# Setup all the corner points
266
- old_topLeft = np .array ((0 , 0 , 1 )).transpose ()
267
- old_topRight = np .array ((self .xspan , 0 , 1 )).transpose ()
268
- old_bottomLeft = np .array ((0 , self .yspan , 1 )).transpose ()
269
- old_bottomRight = np .array ((self .xspan , self .yspan , 1 )).transpose ()
267
+ old_topleft = np .array ((0 , 0 , 1 )).transpose ()
268
+ old_topright = np .array ((self .xspan , 0 , 1 )).transpose ()
269
+ old_bottomleft = np .array ((0 , self .yspan , 1 )).transpose ()
270
+ old_bottomright = np .array ((self .xspan , self .yspan , 1 )).transpose ()
270
271
271
272
pos = np .array (((xpos ), (ypos ), (1 )))
272
273
@@ -278,23 +279,23 @@ def rotate_point(
278
279
T2 = np .array (((1 , 0 , center_x ), (0 , 1 , center_y ), (0 , 0 , 1 )))
279
280
280
281
# Rotate the topRight corner and the bottomLeft corner about the center
281
- rotated_topLeft = T2 .dot (R .dot (T1 .dot (old_bottomLeft )))
282
- rotated_topRight = T2 .dot (R .dot (T1 .dot (old_topLeft )))
283
- rotated_bottomRight = T2 .dot (R .dot (T1 .dot (old_topRight )))
284
- rotated_bottomLeft = T2 .dot (R .dot (T1 .dot (old_bottomRight )))
282
+ rotated_topleft = T2 .dot (R .dot (T1 .dot (old_bottomleft )))
283
+ rotated_topright = T2 .dot (R .dot (T1 .dot (old_topleft )))
284
+ rotated_bottomright = T2 .dot (R .dot (T1 .dot (old_topright )))
285
+ rotated_bottomleft = T2 .dot (R .dot (T1 .dot (old_bottomright )))
285
286
286
287
# Find the new position of the topleft corner by finding the min of all the corner points
287
288
xmin = min (
288
- rotated_topLeft [0 ],
289
- rotated_topRight [0 ],
290
- rotated_bottomLeft [0 ],
291
- rotated_bottomRight [0 ],
289
+ rotated_topleft [0 ],
290
+ rotated_topright [0 ],
291
+ rotated_bottomleft [0 ],
292
+ rotated_bottomright [0 ],
292
293
)
293
294
ymin = min (
294
- rotated_topLeft [1 ],
295
- rotated_topRight [1 ],
296
- rotated_bottomLeft [1 ],
297
- rotated_bottomRight [1 ],
295
+ rotated_topleft [1 ],
296
+ rotated_topright [1 ],
297
+ rotated_bottomleft [1 ],
298
+ rotated_bottomright [1 ],
298
299
)
299
300
300
301
T3 = np .array (((1 , 0 , - xmin ), (0 , 1 , - ymin ), (0 , 0 , 1 )))
@@ -315,6 +316,8 @@ def rotate_point_around_center(
315
316
Returns:
316
317
Tuple[float, float]: A tuple containing the rotated coordinates
317
318
"""
319
+ # pylint: disable=invalid-name,too-many-locals
320
+
318
321
# Setup the center to be used the translation matrices
319
322
center_x = self .xpos + self .xspan / 2
320
323
center_y = self .ypos + self .yspan / 2
@@ -340,23 +343,23 @@ def get_rotated_component_definition(self, angle: int) -> Component:
340
343
Returns:
341
344
Component: [description]
342
345
"""
343
- new_topLeft = self .rotate_point (0 , 0 , angle )
344
- new_topRight = self .rotate_point (self .xspan , 0 , angle )
345
- new_bottomLeft = self .rotate_point (0 , self .yspan , angle )
346
- new_bottomRight = self .rotate_point (self .xspan , self .yspan , angle )
346
+ new_topleft = self .rotate_point (0 , 0 , angle )
347
+ new_topright = self .rotate_point (self .xspan , 0 , angle )
348
+ new_bottomleft = self .rotate_point (0 , self .yspan , angle )
349
+ new_bottomright = self .rotate_point (self .xspan , self .yspan , angle )
347
350
348
351
# Find xmin, ymin, xmax, ymax for all the corner points
349
352
xmin = min (
350
- new_topLeft [0 ], new_topRight [0 ], new_bottomLeft [0 ], new_bottomRight [0 ]
353
+ new_topleft [0 ], new_topright [0 ], new_bottomleft [0 ], new_bottomright [0 ]
351
354
)
352
355
ymin = min (
353
- new_topLeft [1 ], new_topRight [1 ], new_bottomLeft [1 ], new_bottomRight [1 ]
356
+ new_topleft [1 ], new_topright [1 ], new_bottomleft [1 ], new_bottomright [1 ]
354
357
)
355
358
xmax = max (
356
- new_topLeft [0 ], new_topRight [0 ], new_bottomLeft [0 ], new_bottomRight [0 ]
359
+ new_topleft [0 ], new_topright [0 ], new_bottomleft [0 ], new_bottomright [0 ]
357
360
)
358
361
ymax = max (
359
- new_topLeft [1 ], new_topRight [1 ], new_bottomLeft [1 ], new_bottomRight [1 ]
362
+ new_topleft [1 ], new_topright [1 ], new_bottomleft [1 ], new_bottomright [1 ]
360
363
)
361
364
362
365
# Find the new xspan and yspan
@@ -408,31 +411,31 @@ def rotate_component(self) -> None:
408
411
port .x = new_location [0 ]
409
412
port .y = new_location [1 ]
410
413
411
- new_topLeft = self .rotate_point_around_center (
414
+ new_topleft = self .rotate_point_around_center (
412
415
self .xpos + 0 , self .ypos + 0 , self .rotation
413
416
)
414
- new_topRight = self .rotate_point_around_center (
417
+ new_topright = self .rotate_point_around_center (
415
418
self .xpos + self .xspan , self .ypos + 0 , self .rotation
416
419
)
417
- new_bottomLeft = self .rotate_point_around_center (
420
+ new_bottomleft = self .rotate_point_around_center (
418
421
self .xpos + 0 , self .ypos + self .yspan , self .rotation
419
422
)
420
- new_bottomRight = self .rotate_point_around_center (
423
+ new_bottomright = self .rotate_point_around_center (
421
424
self .xpos + self .xspan , self .ypos + self .yspan , self .rotation
422
425
)
423
426
424
427
# Find xmin, ymin, xmax, ymax for all the corner points
425
428
xmin = min (
426
- new_topLeft [0 ], new_topRight [0 ], new_bottomLeft [0 ], new_bottomRight [0 ]
429
+ new_topleft [0 ], new_topright [0 ], new_bottomleft [0 ], new_bottomright [0 ]
427
430
)
428
431
ymin = min (
429
- new_topLeft [1 ], new_topRight [1 ], new_bottomLeft [1 ], new_bottomRight [1 ]
432
+ new_topleft [1 ], new_topright [1 ], new_bottomleft [1 ], new_bottomright [1 ]
430
433
)
431
434
xmax = max (
432
- new_topLeft [0 ], new_topRight [0 ], new_bottomLeft [0 ], new_bottomRight [0 ]
435
+ new_topleft [0 ], new_topright [0 ], new_bottomleft [0 ], new_bottomright [0 ]
433
436
)
434
437
ymax = max (
435
- new_topLeft [1 ], new_topRight [1 ], new_bottomLeft [1 ], new_bottomRight [1 ]
438
+ new_topleft [1 ], new_topright [1 ], new_bottomleft [1 ], new_bottomright [1 ]
436
439
)
437
440
438
441
# Find the new xspan and yspan
0 commit comments