├── .gitignore ├── .idea ├── inspectionProfiles │ └── profiles_settings.xml ├── kodacad.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── OCCUtils ├── Common.py ├── Construct.py ├── Image.py ├── Iteration.py ├── Topology.py ├── __init__.py ├── __pycache__ │ ├── Common.cpython-39.pyc │ ├── Construct.cpython-39.pyc │ ├── Topology.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── types_lut.cpython-39.pyc ├── base.py ├── edge.py ├── face.py ├── shell.py ├── solid.py ├── types_lut.py ├── vertex.py └── wire.py ├── README.md ├── __pycache__ ├── docmodel.cpython-39.pyc ├── m2d.cpython-39.pyc ├── mainwindow.cpython-39.pyc ├── rpnCalculator.cpython-39.pyc ├── version.cpython-39.pyc └── workplane.cpython-39.pyc ├── docmodel.py ├── docs ├── assembly_structure │ ├── assembly_structure.md │ └── images │ │ ├── as1-loaded-under-top.png │ │ ├── button_created.png │ │ ├── components.png │ │ └── ready_to_create_button.png ├── bottle_tutorial │ ├── images │ │ ├── bot1.png │ │ ├── bot2.png │ │ ├── bot3.png │ │ ├── bot4.png │ │ ├── bot5.png │ │ ├── wp1.png │ │ ├── wp2.png │ │ ├── wp3.png │ │ ├── wp4.png │ │ ├── wp5.png │ │ ├── wp6.png │ │ ├── wp7.png │ │ └── wp8.png │ └── index.html ├── images │ ├── bottle.png │ ├── img8.png │ ├── ui.png │ └── wp.png ├── index.html ├── index.html~ └── load_mod_save_demo │ ├── images │ ├── img1.png │ ├── img2.png │ ├── img3.png │ ├── img4.png │ ├── img5.png │ ├── img6.png │ ├── img7.png │ ├── img8.png │ └── img9.png │ ├── index.html │ └── index.html~ ├── icons ├── abcl.gif ├── acl.gif ├── arc3p.gif ├── arcc2p.gif ├── array.gif ├── cc3p.gif ├── cccirc.gif ├── ccirc.gif ├── cctan2.gif ├── cctan3.gif ├── circ.gif ├── cltan1.gif ├── cltan2.gif ├── del_c.gif ├── del_cel.gif ├── del_el.gif ├── del_g.gif ├── fillet.gif ├── hcl.gif ├── hvcl.gif ├── join.gif ├── lbcl.gif ├── line.gif ├── parcl.gif ├── perpcl.gif ├── poly.gif ├── rect.gif ├── refangcl.gif ├── rotate.gif ├── sep.gif ├── slot.gif ├── split.gif ├── stretch.gif ├── tpcl.gif ├── translate.gif └── vcl.gif ├── kodacad.py ├── m2d.py ├── mainwindow.py ├── myDisplay ├── OCCViewer.py ├── Readme.txt ├── SimpleGui.py ├── __init__.py ├── backend.py ├── icons │ ├── cursor-magnify-area.png │ ├── cursor-magnify.png │ ├── cursor-pan.png │ └── cursor-rotate.png ├── qtDisplay.py └── wxDisplay.py ├── rpnCalculator.py ├── save_files ├── as1-oc-214-at_top.xbf ├── as1-oc-214-under_top.xbf └── rt.xbf ├── step ├── Bottle.stp ├── as1-oc-214.stp └── as1_pe_203.stp ├── stepanalyzer.py ├── version.py └── workplane.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | __pycache__/* 3 | foo* 4 | 5 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/kodacad.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/.idea/kodacad.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/LICENSE -------------------------------------------------------------------------------- /OCCUtils/Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/Common.py -------------------------------------------------------------------------------- /OCCUtils/Construct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/Construct.py -------------------------------------------------------------------------------- /OCCUtils/Image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/Image.py -------------------------------------------------------------------------------- /OCCUtils/Iteration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/Iteration.py -------------------------------------------------------------------------------- /OCCUtils/Topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/Topology.py -------------------------------------------------------------------------------- /OCCUtils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/__init__.py -------------------------------------------------------------------------------- /OCCUtils/__pycache__/Common.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/__pycache__/Common.cpython-39.pyc -------------------------------------------------------------------------------- /OCCUtils/__pycache__/Construct.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/__pycache__/Construct.cpython-39.pyc -------------------------------------------------------------------------------- /OCCUtils/__pycache__/Topology.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/__pycache__/Topology.cpython-39.pyc -------------------------------------------------------------------------------- /OCCUtils/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /OCCUtils/__pycache__/types_lut.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/__pycache__/types_lut.cpython-39.pyc -------------------------------------------------------------------------------- /OCCUtils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/base.py -------------------------------------------------------------------------------- /OCCUtils/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/edge.py -------------------------------------------------------------------------------- /OCCUtils/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/face.py -------------------------------------------------------------------------------- /OCCUtils/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/shell.py -------------------------------------------------------------------------------- /OCCUtils/solid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/solid.py -------------------------------------------------------------------------------- /OCCUtils/types_lut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/types_lut.py -------------------------------------------------------------------------------- /OCCUtils/vertex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/vertex.py -------------------------------------------------------------------------------- /OCCUtils/wire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/OCCUtils/wire.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/docmodel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/__pycache__/docmodel.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/m2d.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/__pycache__/m2d.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/mainwindow.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/__pycache__/mainwindow.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/rpnCalculator.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/__pycache__/rpnCalculator.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/version.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/__pycache__/version.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/workplane.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/__pycache__/workplane.cpython-39.pyc -------------------------------------------------------------------------------- /docmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docmodel.py -------------------------------------------------------------------------------- /docs/assembly_structure/assembly_structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/assembly_structure/assembly_structure.md -------------------------------------------------------------------------------- /docs/assembly_structure/images/as1-loaded-under-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/assembly_structure/images/as1-loaded-under-top.png -------------------------------------------------------------------------------- /docs/assembly_structure/images/button_created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/assembly_structure/images/button_created.png -------------------------------------------------------------------------------- /docs/assembly_structure/images/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/assembly_structure/images/components.png -------------------------------------------------------------------------------- /docs/assembly_structure/images/ready_to_create_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/assembly_structure/images/ready_to_create_button.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/bot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/bot1.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/bot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/bot2.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/bot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/bot3.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/bot4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/bot4.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/bot5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/bot5.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp1.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp2.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp3.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp4.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp5.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp6.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp7.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/images/wp8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/images/wp8.png -------------------------------------------------------------------------------- /docs/bottle_tutorial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/bottle_tutorial/index.html -------------------------------------------------------------------------------- /docs/images/bottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/images/bottle.png -------------------------------------------------------------------------------- /docs/images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/images/img8.png -------------------------------------------------------------------------------- /docs/images/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/images/ui.png -------------------------------------------------------------------------------- /docs/images/wp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/images/wp.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/index.html~ -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img1.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img2.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img3.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img4.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img5.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img6.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img7.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img8.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/images/img9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/images/img9.png -------------------------------------------------------------------------------- /docs/load_mod_save_demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/index.html -------------------------------------------------------------------------------- /docs/load_mod_save_demo/index.html~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/docs/load_mod_save_demo/index.html~ -------------------------------------------------------------------------------- /icons/abcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/abcl.gif -------------------------------------------------------------------------------- /icons/acl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/acl.gif -------------------------------------------------------------------------------- /icons/arc3p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/arc3p.gif -------------------------------------------------------------------------------- /icons/arcc2p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/arcc2p.gif -------------------------------------------------------------------------------- /icons/array.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/array.gif -------------------------------------------------------------------------------- /icons/cc3p.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/cc3p.gif -------------------------------------------------------------------------------- /icons/cccirc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/cccirc.gif -------------------------------------------------------------------------------- /icons/ccirc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/ccirc.gif -------------------------------------------------------------------------------- /icons/cctan2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/cctan2.gif -------------------------------------------------------------------------------- /icons/cctan3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/cctan3.gif -------------------------------------------------------------------------------- /icons/circ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/circ.gif -------------------------------------------------------------------------------- /icons/cltan1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/cltan1.gif -------------------------------------------------------------------------------- /icons/cltan2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/cltan2.gif -------------------------------------------------------------------------------- /icons/del_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/del_c.gif -------------------------------------------------------------------------------- /icons/del_cel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/del_cel.gif -------------------------------------------------------------------------------- /icons/del_el.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/del_el.gif -------------------------------------------------------------------------------- /icons/del_g.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/del_g.gif -------------------------------------------------------------------------------- /icons/fillet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/fillet.gif -------------------------------------------------------------------------------- /icons/hcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/hcl.gif -------------------------------------------------------------------------------- /icons/hvcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/hvcl.gif -------------------------------------------------------------------------------- /icons/join.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/join.gif -------------------------------------------------------------------------------- /icons/lbcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/lbcl.gif -------------------------------------------------------------------------------- /icons/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/line.gif -------------------------------------------------------------------------------- /icons/parcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/parcl.gif -------------------------------------------------------------------------------- /icons/perpcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/perpcl.gif -------------------------------------------------------------------------------- /icons/poly.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/poly.gif -------------------------------------------------------------------------------- /icons/rect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/rect.gif -------------------------------------------------------------------------------- /icons/refangcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/refangcl.gif -------------------------------------------------------------------------------- /icons/rotate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/rotate.gif -------------------------------------------------------------------------------- /icons/sep.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/sep.gif -------------------------------------------------------------------------------- /icons/slot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/slot.gif -------------------------------------------------------------------------------- /icons/split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/split.gif -------------------------------------------------------------------------------- /icons/stretch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/stretch.gif -------------------------------------------------------------------------------- /icons/tpcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/tpcl.gif -------------------------------------------------------------------------------- /icons/translate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/translate.gif -------------------------------------------------------------------------------- /icons/vcl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/icons/vcl.gif -------------------------------------------------------------------------------- /kodacad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/kodacad.py -------------------------------------------------------------------------------- /m2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/m2d.py -------------------------------------------------------------------------------- /mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/mainwindow.py -------------------------------------------------------------------------------- /myDisplay/OCCViewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/OCCViewer.py -------------------------------------------------------------------------------- /myDisplay/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/Readme.txt -------------------------------------------------------------------------------- /myDisplay/SimpleGui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/SimpleGui.py -------------------------------------------------------------------------------- /myDisplay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myDisplay/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/backend.py -------------------------------------------------------------------------------- /myDisplay/icons/cursor-magnify-area.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/icons/cursor-magnify-area.png -------------------------------------------------------------------------------- /myDisplay/icons/cursor-magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/icons/cursor-magnify.png -------------------------------------------------------------------------------- /myDisplay/icons/cursor-pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/icons/cursor-pan.png -------------------------------------------------------------------------------- /myDisplay/icons/cursor-rotate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/icons/cursor-rotate.png -------------------------------------------------------------------------------- /myDisplay/qtDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/qtDisplay.py -------------------------------------------------------------------------------- /myDisplay/wxDisplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/myDisplay/wxDisplay.py -------------------------------------------------------------------------------- /rpnCalculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/rpnCalculator.py -------------------------------------------------------------------------------- /save_files/as1-oc-214-at_top.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/save_files/as1-oc-214-at_top.xbf -------------------------------------------------------------------------------- /save_files/as1-oc-214-under_top.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/save_files/as1-oc-214-under_top.xbf -------------------------------------------------------------------------------- /save_files/rt.xbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/save_files/rt.xbf -------------------------------------------------------------------------------- /step/Bottle.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/step/Bottle.stp -------------------------------------------------------------------------------- /step/as1-oc-214.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/step/as1-oc-214.stp -------------------------------------------------------------------------------- /step/as1_pe_203.stp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/step/as1_pe_203.stp -------------------------------------------------------------------------------- /stepanalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/stepanalyzer.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/version.py -------------------------------------------------------------------------------- /workplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dblanding/kodacad/HEAD/workplane.py --------------------------------------------------------------------------------