├── README.md └── kicommand ├── KiCommand_GUI.fbp ├── __init__.py ├── fontimport.py ├── kicommand.py ├── kicommand_fonts.py ├── kicommand_gui.py ├── kicommand_persist.commands ├── loadable ├── elephant.txt ├── santaclause.txt └── switzerland.txt ├── point_in_polygon.py ├── svgutil.py ├── test ├── __init__.py ├── demoboard_values.txt ├── svg_values.txt ├── test.py ├── test_000_qa_works.py ├── test_001_preliminary.py ├── test_002_float_int.py ├── test_003_listdelist.py ├── test_004_append_concat_extend.py ├── test_005_stack.py ├── test_006_internal.py ├── test_007_programming.py ├── test_008_programming2.py ├── test_009_istests.py ├── test_012_board_class.py ├── test_013_pcb_load.py ├── test_024_drawing.py ├── test_025_drawing2.py ├── test_026_demoboard_values.py ├── test_027_svg_values.py ├── test_028_drawing3.py ├── test_030_persist.py └── tests.txt └── wxpointutil.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/README.md -------------------------------------------------------------------------------- /kicommand/KiCommand_GUI.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/KiCommand_GUI.fbp -------------------------------------------------------------------------------- /kicommand/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/__init__.py -------------------------------------------------------------------------------- /kicommand/fontimport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/fontimport.py -------------------------------------------------------------------------------- /kicommand/kicommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/kicommand.py -------------------------------------------------------------------------------- /kicommand/kicommand_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/kicommand_fonts.py -------------------------------------------------------------------------------- /kicommand/kicommand_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/kicommand_gui.py -------------------------------------------------------------------------------- /kicommand/kicommand_persist.commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/kicommand_persist.commands -------------------------------------------------------------------------------- /kicommand/loadable/elephant.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/loadable/elephant.txt -------------------------------------------------------------------------------- /kicommand/loadable/santaclause.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/loadable/santaclause.txt -------------------------------------------------------------------------------- /kicommand/loadable/switzerland.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/loadable/switzerland.txt -------------------------------------------------------------------------------- /kicommand/point_in_polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/point_in_polygon.py -------------------------------------------------------------------------------- /kicommand/svgutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/svgutil.py -------------------------------------------------------------------------------- /kicommand/test/__init__.py: -------------------------------------------------------------------------------- 1 | from test import * -------------------------------------------------------------------------------- /kicommand/test/demoboard_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/demoboard_values.txt -------------------------------------------------------------------------------- /kicommand/test/svg_values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/svg_values.txt -------------------------------------------------------------------------------- /kicommand/test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test.py -------------------------------------------------------------------------------- /kicommand/test/test_000_qa_works.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_000_qa_works.py -------------------------------------------------------------------------------- /kicommand/test/test_001_preliminary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_001_preliminary.py -------------------------------------------------------------------------------- /kicommand/test/test_002_float_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_002_float_int.py -------------------------------------------------------------------------------- /kicommand/test/test_003_listdelist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_003_listdelist.py -------------------------------------------------------------------------------- /kicommand/test/test_004_append_concat_extend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_004_append_concat_extend.py -------------------------------------------------------------------------------- /kicommand/test/test_005_stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_005_stack.py -------------------------------------------------------------------------------- /kicommand/test/test_006_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_006_internal.py -------------------------------------------------------------------------------- /kicommand/test/test_007_programming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_007_programming.py -------------------------------------------------------------------------------- /kicommand/test/test_008_programming2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_008_programming2.py -------------------------------------------------------------------------------- /kicommand/test/test_009_istests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_009_istests.py -------------------------------------------------------------------------------- /kicommand/test/test_012_board_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_012_board_class.py -------------------------------------------------------------------------------- /kicommand/test/test_013_pcb_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_013_pcb_load.py -------------------------------------------------------------------------------- /kicommand/test/test_024_drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_024_drawing.py -------------------------------------------------------------------------------- /kicommand/test/test_025_drawing2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_025_drawing2.py -------------------------------------------------------------------------------- /kicommand/test/test_026_demoboard_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_026_demoboard_values.py -------------------------------------------------------------------------------- /kicommand/test/test_027_svg_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_027_svg_values.py -------------------------------------------------------------------------------- /kicommand/test/test_028_drawing3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_028_drawing3.py -------------------------------------------------------------------------------- /kicommand/test/test_030_persist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/test_030_persist.py -------------------------------------------------------------------------------- /kicommand/test/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/test/tests.txt -------------------------------------------------------------------------------- /kicommand/wxpointutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HiGregSmith/KiCommand/HEAD/kicommand/wxpointutil.py --------------------------------------------------------------------------------