├── LICENSE ├── README.md ├── __pycache__ ├── dxf.cpython-39.pyc ├── entities.cpython-39.pyc ├── geometryhelpers.cpython-39.pyc ├── matrix.cpython-39.pyc ├── tkrpncalc.cpython-39.pyc ├── txtdialog.cpython-39.pyc └── zooming.cpython-39.pyc ├── dxf.py ├── entities.py ├── geometryhelpers.py ├── icons ├── abcl.gif ├── acl.gif ├── arc3p.gif ├── arcc2p.gif ├── array.gif ├── cc3p.gif ├── cccirc.gif ├── ccirc.gif ├── cctan2.gif ├── cctan3.gif ├── circ.gif ├── cl2p.gif ├── clrefang.gif ├── cltan1.gif ├── cltan2.gif ├── del_c.gif ├── del_el.gif ├── del_g.gif ├── drag_item.gif ├── duplicate_item.gif ├── fillet.gif ├── hcl.gif ├── hvcl.gif ├── join.gif ├── lbcl.gif ├── line.gif ├── noop.gif ├── parcl.gif ├── perpcl.gif ├── poly.gif ├── rect.gif ├── rotate.gif ├── sep.gif ├── slot.gif ├── split.gif ├── stop.gif ├── stop.png ├── stretch.gif ├── text.gif ├── translate.gif └── vcl.gif ├── matrix.py ├── pyurcad.py ├── savedCadFiles ├── cline.dxf ├── corner_brkt.dxf ├── corner_brkt.log ├── corner_brkt.ps ├── house.dxf ├── houseplan.dxf ├── houseplan.pdf ├── houseplan.ps ├── houseplan2.dxf ├── rect_circ_arc.dxf └── spirals.dxf ├── tkrpncalc.py ├── txtdialog.py └── zooming.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/dxf.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/__pycache__/dxf.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/entities.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/__pycache__/entities.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/geometryhelpers.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/__pycache__/geometryhelpers.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/matrix.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/__pycache__/matrix.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/tkrpncalc.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/__pycache__/tkrpncalc.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/txtdialog.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/__pycache__/txtdialog.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/zooming.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/__pycache__/zooming.cpython-39.pyc -------------------------------------------------------------------------------- /dxf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/dxf.py -------------------------------------------------------------------------------- /entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/entities.py -------------------------------------------------------------------------------- /geometryhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/geometryhelpers.py -------------------------------------------------------------------------------- /icons/abcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/abcl.gif -------------------------------------------------------------------------------- /icons/acl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/acl.gif -------------------------------------------------------------------------------- /icons/arc3p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/arc3p.gif -------------------------------------------------------------------------------- /icons/arcc2p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/arcc2p.gif -------------------------------------------------------------------------------- /icons/array.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/array.gif -------------------------------------------------------------------------------- /icons/cc3p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/cc3p.gif -------------------------------------------------------------------------------- /icons/cccirc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/cccirc.gif -------------------------------------------------------------------------------- /icons/ccirc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/ccirc.gif -------------------------------------------------------------------------------- /icons/cctan2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/cctan2.gif -------------------------------------------------------------------------------- /icons/cctan3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/cctan3.gif -------------------------------------------------------------------------------- /icons/circ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/circ.gif -------------------------------------------------------------------------------- /icons/cl2p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/cl2p.gif -------------------------------------------------------------------------------- /icons/clrefang.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/clrefang.gif -------------------------------------------------------------------------------- /icons/cltan1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/cltan1.gif -------------------------------------------------------------------------------- /icons/cltan2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/cltan2.gif -------------------------------------------------------------------------------- /icons/del_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/del_c.gif -------------------------------------------------------------------------------- /icons/del_el.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/del_el.gif -------------------------------------------------------------------------------- /icons/del_g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/del_g.gif -------------------------------------------------------------------------------- /icons/drag_item.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/drag_item.gif -------------------------------------------------------------------------------- /icons/duplicate_item.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/duplicate_item.gif -------------------------------------------------------------------------------- /icons/fillet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/fillet.gif -------------------------------------------------------------------------------- /icons/hcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/hcl.gif -------------------------------------------------------------------------------- /icons/hvcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/hvcl.gif -------------------------------------------------------------------------------- /icons/join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/join.gif -------------------------------------------------------------------------------- /icons/lbcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/lbcl.gif -------------------------------------------------------------------------------- /icons/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/line.gif -------------------------------------------------------------------------------- /icons/noop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/noop.gif -------------------------------------------------------------------------------- /icons/parcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/parcl.gif -------------------------------------------------------------------------------- /icons/perpcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/perpcl.gif -------------------------------------------------------------------------------- /icons/poly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/poly.gif -------------------------------------------------------------------------------- /icons/rect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/rect.gif -------------------------------------------------------------------------------- /icons/rotate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/rotate.gif -------------------------------------------------------------------------------- /icons/sep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/sep.gif -------------------------------------------------------------------------------- /icons/slot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/slot.gif -------------------------------------------------------------------------------- /icons/split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/split.gif -------------------------------------------------------------------------------- /icons/stop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/stop.gif -------------------------------------------------------------------------------- /icons/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/stop.png -------------------------------------------------------------------------------- /icons/stretch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/stretch.gif -------------------------------------------------------------------------------- /icons/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/text.gif -------------------------------------------------------------------------------- /icons/translate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/translate.gif -------------------------------------------------------------------------------- /icons/vcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/icons/vcl.gif -------------------------------------------------------------------------------- /matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/matrix.py -------------------------------------------------------------------------------- /pyurcad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/pyurcad.py -------------------------------------------------------------------------------- /savedCadFiles/cline.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/cline.dxf -------------------------------------------------------------------------------- /savedCadFiles/corner_brkt.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/corner_brkt.dxf -------------------------------------------------------------------------------- /savedCadFiles/corner_brkt.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/corner_brkt.log -------------------------------------------------------------------------------- /savedCadFiles/corner_brkt.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/corner_brkt.ps -------------------------------------------------------------------------------- /savedCadFiles/house.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/house.dxf -------------------------------------------------------------------------------- /savedCadFiles/houseplan.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/houseplan.dxf -------------------------------------------------------------------------------- /savedCadFiles/houseplan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/houseplan.pdf -------------------------------------------------------------------------------- /savedCadFiles/houseplan.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/houseplan.ps -------------------------------------------------------------------------------- /savedCadFiles/houseplan2.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/houseplan2.dxf -------------------------------------------------------------------------------- /savedCadFiles/rect_circ_arc.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/rect_circ_arc.dxf -------------------------------------------------------------------------------- /savedCadFiles/spirals.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/savedCadFiles/spirals.dxf -------------------------------------------------------------------------------- /tkrpncalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/tkrpncalc.py -------------------------------------------------------------------------------- /txtdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/txtdialog.py -------------------------------------------------------------------------------- /zooming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/pyurcad/HEAD/zooming.py --------------------------------------------------------------------------------