mirror of
https://github.com/gusmanb/logicanalyzer.git
synced 2025-02-11 03:08:04 +00:00
25 lines
670 B
Python
25 lines
670 B
Python
#!/usr/bin/env python3
|
|
# coding=utf8
|
|
#
|
|
# Simple script to scale a KiCad footprint
|
|
# Usage:
|
|
# python kicad-resize-footprint.py <input.kicad_mod> <output.kicad_mod> <scale>
|
|
#
|
|
# Where scale is how much to scale (1 = 100%)
|
|
#
|
|
# Copyright (C) 2020, Uri Shaked.
|
|
|
|
import sys
|
|
import re
|
|
|
|
scale = float(sys.argv[3])
|
|
|
|
def scalexy(val):
|
|
x = float(val.group(1)) * scale
|
|
y = float(val.group(2)) * scale
|
|
return '(xy {} {})'.format(x, y)
|
|
|
|
with open(sys.argv[1], 'r') as in_file, open(sys.argv[2], 'w', newline='') as out_file:
|
|
for line in in_file:
|
|
line = re.sub(r'\(xy ([0-9-.]+) ([0-9-.]+)\)', scalexy, line)
|
|
out_file.write(line) |