├── .gitignore ├── CMakeLists.txt ├── Doxyfile ├── LICENSE ├── README.md ├── setup.py └── src ├── api ├── AbcInterfaceAPI.cpp └── api.cpp ├── global ├── constant.h ├── define.h ├── global.h ├── namespace.h ├── parameter.h └── type.h ├── interface ├── AbcInterface.cpp ├── AbcInterface.h └── abcIncl.h └── util ├── Assert.h ├── BasicTypeSelection.h ├── Box.h ├── GdsHelper.h ├── MsgPrinter.cpp ├── MsgPrinter.h ├── Polygon2Rect.h ├── Vector2D.h ├── XY.h ├── XYZ.h ├── kLibBase.h └── thirdparty ├── AlmostEquals.h ├── RTree.h ├── StdCapture.h └── cmdline.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | docs 3 | .ycm_extra_conf.py 4 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/Doxyfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/setup.py -------------------------------------------------------------------------------- /src/api/AbcInterfaceAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/api/AbcInterfaceAPI.cpp -------------------------------------------------------------------------------- /src/api/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/api/api.cpp -------------------------------------------------------------------------------- /src/global/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/global/constant.h -------------------------------------------------------------------------------- /src/global/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/global/define.h -------------------------------------------------------------------------------- /src/global/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/global/global.h -------------------------------------------------------------------------------- /src/global/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/global/namespace.h -------------------------------------------------------------------------------- /src/global/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/global/parameter.h -------------------------------------------------------------------------------- /src/global/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/global/type.h -------------------------------------------------------------------------------- /src/interface/AbcInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/interface/AbcInterface.cpp -------------------------------------------------------------------------------- /src/interface/AbcInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/interface/AbcInterface.h -------------------------------------------------------------------------------- /src/interface/abcIncl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/interface/abcIncl.h -------------------------------------------------------------------------------- /src/util/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/Assert.h -------------------------------------------------------------------------------- /src/util/BasicTypeSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/BasicTypeSelection.h -------------------------------------------------------------------------------- /src/util/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/Box.h -------------------------------------------------------------------------------- /src/util/GdsHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/GdsHelper.h -------------------------------------------------------------------------------- /src/util/MsgPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/MsgPrinter.cpp -------------------------------------------------------------------------------- /src/util/MsgPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/MsgPrinter.h -------------------------------------------------------------------------------- /src/util/Polygon2Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/Polygon2Rect.h -------------------------------------------------------------------------------- /src/util/Vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/Vector2D.h -------------------------------------------------------------------------------- /src/util/XY.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/XY.h -------------------------------------------------------------------------------- /src/util/XYZ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/XYZ.h -------------------------------------------------------------------------------- /src/util/kLibBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/kLibBase.h -------------------------------------------------------------------------------- /src/util/thirdparty/AlmostEquals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/thirdparty/AlmostEquals.h -------------------------------------------------------------------------------- /src/util/thirdparty/RTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/thirdparty/RTree.h -------------------------------------------------------------------------------- /src/util/thirdparty/StdCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/thirdparty/StdCapture.h -------------------------------------------------------------------------------- /src/util/thirdparty/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krzhu/abc_py/HEAD/src/util/thirdparty/cmdline.h --------------------------------------------------------------------------------