├── About.py ├── App.py ├── Build Defines Auto Generated.txt ├── Build Installer.bat ├── CAD.iss ├── CAD ├── App.h ├── CAD.cbp ├── CAD.sln ├── CAD.vcxproj ├── CMakeLists.txt ├── CadApp.cpp ├── CadApp.h ├── ConversionTools.cpp ├── ConversionTools.h ├── CoordinateSystem.cpp ├── CoordinateSystem.h ├── DigitizeMode.cpp ├── DigitizeMode.h ├── DigitizedPoint.cpp ├── DigitizedPoint.h ├── EndedObject.cpp ├── EndedObject.h ├── ExtrudedObj.cpp ├── ExtrudedObj.h ├── Filter.cpp ├── Filter.h ├── Grid.cpp ├── Grid.h ├── GripData.h ├── Gripper.cpp ├── Gripper.h ├── GripperSelTransform.cpp ├── GripperSelTransform.h ├── GripperTypes.h ├── Group.cpp ├── Group.h ├── HArc.cpp ├── HArc.h ├── HCircle.cpp ├── HCircle.h ├── HDxf.cpp ├── HDxf.h ├── HILine.cpp ├── HILine.h ├── HLine.cpp ├── HLine.h ├── HPoint.cpp ├── HPoint.h ├── HText.cpp ├── HText.h ├── HXml.cpp ├── HXml.h ├── HeeksColor.cpp ├── HeeksColor.h ├── HeeksFont.cpp ├── HeeksFont.h ├── HeeksFontData.h ├── HeeksFontLineData.h ├── HeeksObj.cpp ├── HeeksObj.h ├── History.cpp ├── History.h ├── IPoint.h ├── IdNamedObj.cpp ├── IdNamedObj.h ├── IdNamedObjList.cpp ├── IdNamedObjList.h ├── Index.h ├── InputMode.h ├── KeyCode.h ├── LeftAndRight.cpp ├── LeftAndRight.h ├── MagDragWindow.cpp ├── MagDragWindow.h ├── MarkedList.cpp ├── MarkedList.h ├── Material.h ├── MouseEvent.h ├── ObjList.cpp ├── ObjList.h ├── Observer.h ├── Picking.cpp ├── Picking.h ├── PointOrWindow.cpp ├── PointOrWindow.h ├── Property.cpp ├── Property.h ├── PropertyChange.cpp ├── PropertyChange.h ├── PropertyGeom.cpp ├── PropertyGeom.h ├── PyBaseObject.cpp ├── PyBaseObject.h ├── PyWrapper.cpp ├── PyWrapper.h ├── PythonStuff.cpp ├── RemoveOrAddTool.cpp ├── RemoveOrAddTool.h ├── Ruler.cpp ├── Ruler.h ├── Sketch.cpp ├── Sketch.h ├── SketchOrder.h ├── StlSolid.cpp ├── StlSolid.h ├── StretchTool.cpp ├── StretchTool.h ├── TransformTool.cpp ├── TransformTool.h ├── Undoable.h ├── ViewPanning.cpp ├── ViewPanning.h ├── ViewPoint.cpp ├── ViewPoint.h ├── ViewRotating.cpp ├── ViewRotating.h ├── ViewZooming.cpp ├── ViewZooming.h ├── Viewport.cpp ├── Viewport.h ├── Window.cpp ├── Window.h ├── dxf.cpp ├── dxf.h ├── stdafx.cpp ├── stdafx.h ├── strconv.cpp ├── strconv.h ├── svg.cpp ├── svg.h ├── tinystr.cpp ├── tinystr.h ├── tinyxml.cpp ├── tinyxml.h ├── tinyxmlerror.cpp └── tinyxmlparser.cpp ├── CMakeLists.txt ├── ContextTool.py ├── ConvertText.bat ├── ConvertText.py ├── DigitizeMode.py ├── Drawing.py ├── EllipseDrawing.py ├── FilterDlg.py ├── Frame.py ├── Gear.py ├── Geom ├── Arc.cpp ├── Arc.h ├── Area.cpp ├── Area.h ├── AreaCavC.cpp ├── AreaClipper.cpp ├── AreaDxf.cpp ├── AreaDxf.h ├── AreaOrderer.cpp ├── AreaOrderer.h ├── AreaPocket.cpp ├── Box.cpp ├── Box.h ├── Box2D.h ├── CMakeLists.txt ├── CavalierContours │ ├── ReadMe.txt │ ├── include │ │ └── cavc │ │ │ ├── internal │ │ │ ├── common.hpp │ │ │ └── diagnostics.hpp │ │ │ ├── intrcircle2circle2.hpp │ │ │ ├── intrlineseg2circle2.hpp │ │ │ ├── intrlineseg2lineseg2.hpp │ │ │ ├── mathutils.hpp │ │ │ ├── plinesegment.hpp │ │ │ ├── polyline.hpp │ │ │ ├── polylinecombine.hpp │ │ │ ├── polylineintersects.hpp │ │ │ ├── polylineoffset.hpp │ │ │ ├── polylineoffsetislands.hpp │ │ │ ├── staticspatialindex.hpp │ │ │ ├── vector.hpp │ │ │ └── vector2.hpp │ └── src │ │ └── cavaliercontours.cpp ├── Circle.cpp ├── Construction.cpp ├── Curve.cpp ├── Curve.h ├── Curve3D.cpp ├── Curve3D.h ├── Finite.cpp ├── Geom.cpp ├── Geom.h ├── Geom.sln ├── Geom.vcxproj ├── HeeksGeomDxf.cpp ├── HeeksGeomDxf.h ├── MachiningArea.h ├── Matrix.cpp ├── Mesh.cpp ├── Mesh.h ├── Mosaic.cpp ├── Mosaic.h ├── OctTree.cpp ├── OctTree.h ├── Offset.cpp ├── Point.h ├── PythonStuff.cpp ├── PythonStuff.h ├── README ├── Tris.cpp ├── Tris.h ├── clipper.cpp ├── clipper.hpp ├── dxf.cpp ├── dxf.h ├── earcut.h └── geometry.h ├── GraphicsCanvas.py ├── HDialog.py ├── HImage.py ├── Heeks2.desktop ├── Heeks2.svg ├── HeeksCAD.bat ├── HeeksCAD.iss ├── HeeksConfig.py ├── HeeksFont.py ├── HeeksFontLines.py ├── HeeksObjDlg.py ├── InputMode.py ├── InputModeCanvas.py ├── Js.py ├── Key.py ├── LICENSE ├── LeftAndRight.py ├── LineArcDrawing.py ├── Mf3.py ├── Mouse.py ├── NiceTextCtrl.py ├── ObjPropsCanvas.py ├── Object.py ├── PictureFrame.py ├── PointDrawing.py ├── PreBuild.py ├── Printout.py ├── PropertiesCanvas.py ├── README.md ├── RefreshObserver.py ├── Ribbon.py ├── Run.bat ├── Run.py ├── SelectMode.py ├── SolidApp.py ├── Splash.png ├── Splash.py ├── Splash.svg ├── Step ├── CMakeLists.txt ├── Cone.cpp ├── Cone.h ├── ConversionTools.cpp ├── ConversionTools.h ├── CoordinateSystem.cpp ├── CoordinateSystem.h ├── Cuboid.cpp ├── Cuboid.h ├── Cylinder.cpp ├── Cylinder.h ├── Edge.cpp ├── Edge.h ├── EdgeBlend.h ├── EllipseDrawing.cpp ├── EllipseDrawing.h ├── Face.cpp ├── Face.h ├── FaceTools.cpp ├── FaceTools.h ├── HEllipse.cpp ├── HEllipse.h ├── HSpline.cpp ├── HSpline.h ├── Loop.cpp ├── Loop.h ├── NurbSurfaceParams.h ├── OCCGeom.cpp ├── OCCGeom.h ├── OCCProperty.h ├── PropertySolid.cpp ├── PropertySolid.h ├── PythonStuff.cpp ├── ReadMe.txt ├── RuledSurface.cpp ├── RuledSurface.h ├── Settings.cpp ├── Settings.h ├── Shape.cpp ├── Shape.h ├── ShapeData.cpp ├── ShapeData.h ├── ShapeTools.cpp ├── ShapeTools.h ├── Solid.cpp ├── Solid.h ├── SolidTools.cpp ├── SolidTools.h ├── Sphere.cpp ├── Sphere.h ├── Step.cbp ├── Step.sln ├── Step.vcxproj ├── StepFileObject.cpp ├── StepFileObject.h ├── Vertex.cpp ├── Vertex.h ├── Wire.cpp ├── Wire.h ├── ammend.bat ├── ammend.py ├── stdafx.cpp └── stdafx.h ├── Svg.py ├── TextCurve.py ├── ToolBarTool.py ├── ToolImage.py ├── Transform.py ├── TreeCanvas.py ├── UbuntuBuild.txt ├── Wrl.py ├── arial font.svg ├── bitmaps ├── about.png ├── add.png ├── angle │ ├── line.png │ ├── xy.png │ ├── xz.png │ └── yz.png ├── arc.png ├── bitmaps.svg ├── centre.png ├── centregray.png ├── chamfer.png ├── circ2p.png ├── circ3p.png ├── circles.png ├── circpr.png ├── common.png ├── cone.png ├── coords3.png ├── coordsys.png ├── copy.png ├── copym.png ├── copyr.png ├── copyt.png ├── cube.png ├── cut.png ├── cyl.png ├── delete.png ├── dimension.png ├── edit.png ├── empty.png ├── enddraw.png ├── endof.png ├── endofgray.png ├── exit.png ├── export.png ├── extrude.png ├── face2sketch.png ├── facerch.png ├── file.png ├── fillet.png ├── filter.png ├── fitarcs.png ├── fullscreen.png ├── fulltext.png ├── fuse.png ├── gear.png ├── geom.png ├── hidedatum.png ├── hidefacenormals.png ├── iline.png ├── import.png ├── input.png ├── inputgray.png ├── inters.png ├── intersgray.png ├── la2face.png ├── line.png ├── lines.png ├── mag.png ├── magextents.png ├── magnorot.png ├── magprev.png ├── magxy.png ├── magxym.png ├── magxyz.png ├── magxz.png ├── magxzm.png ├── magyz.png ├── magyzm.png ├── makesketch.png ├── measure.png ├── midpoint.png ├── midpointgray.png ├── mirror │ ├── horiz.png │ ├── other.png │ ├── vert.png │ └── z.png ├── movem.png ├── mover.png ├── moves.png ├── movet.png ├── new.png ├── objects.png ├── objectsgray.png ├── obround.png ├── offset.png ├── open.png ├── pan.png ├── paste.png ├── pentagon.png ├── pickpos.png ├── pixelated.png ├── point.png ├── ppreview.png ├── print.png ├── properties.png ├── propertiesgray.png ├── psetup.png ├── recent.png ├── rect.png ├── redo.png ├── redraw.png ├── restore.png ├── revolve.png ├── rotate free.png ├── rotate upright.png ├── rotface.png ├── ruled.png ├── save.png ├── saveas.png ├── section.png ├── select.png ├── settings.png ├── shadow.png ├── showdatum.png ├── showfacenormals.png ├── sketchcut.png ├── sketchintersect.png ├── sketchjoin.png ├── sketchunite.png ├── smoothed.png ├── snap.png ├── snapgray.png ├── solids.png ├── sphere.png ├── splitsketch.png ├── splpts.png ├── square.bat ├── square.py ├── subtract.png ├── sweep.png ├── text.png ├── title.png ├── undo.png ├── unknown.png ├── view.png ├── viewrot.png └── zoom.png ├── cutsphere.stl ├── debian ├── cad-dev.install ├── cad.install ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── rules └── source │ └── format ├── heeks2.sh ├── heekscad.ico ├── heekscad.png ├── icons ├── arc.png ├── branch_end.png ├── branch_end_minus.png ├── branch_end_plus.png ├── branch_minus.png ├── branch_plus.png ├── branch_split.png ├── branch_trunk.png ├── circle.png ├── cone.png ├── coordsys.png ├── cube.png ├── cyl.png ├── edge.png ├── edges.png ├── ellipse.png ├── face.png ├── faces.png ├── gear.png ├── iline.png ├── line.png ├── minus.png ├── picture.png ├── plus.png ├── point.png ├── sketch.png ├── solid.png ├── solids.png ├── sphere.png ├── spline.png ├── stlsolid.png ├── text.png ├── unknown.png ├── vertex.png ├── vertices.png ├── wire.png └── xml.png ├── logos.svg ├── shape.step ├── simple.STEP ├── simple.heeks ├── startcad.py └── test.py /About.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/About.py -------------------------------------------------------------------------------- /App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/App.py -------------------------------------------------------------------------------- /Build Defines Auto Generated.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Build Defines Auto Generated.txt -------------------------------------------------------------------------------- /Build Installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Build Installer.bat -------------------------------------------------------------------------------- /CAD.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD.iss -------------------------------------------------------------------------------- /CAD/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/App.h -------------------------------------------------------------------------------- /CAD/CAD.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CAD.cbp -------------------------------------------------------------------------------- /CAD/CAD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CAD.sln -------------------------------------------------------------------------------- /CAD/CAD.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CAD.vcxproj -------------------------------------------------------------------------------- /CAD/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CMakeLists.txt -------------------------------------------------------------------------------- /CAD/CadApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CadApp.cpp -------------------------------------------------------------------------------- /CAD/CadApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CadApp.h -------------------------------------------------------------------------------- /CAD/ConversionTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ConversionTools.cpp -------------------------------------------------------------------------------- /CAD/ConversionTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ConversionTools.h -------------------------------------------------------------------------------- /CAD/CoordinateSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CoordinateSystem.cpp -------------------------------------------------------------------------------- /CAD/CoordinateSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/CoordinateSystem.h -------------------------------------------------------------------------------- /CAD/DigitizeMode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/DigitizeMode.cpp -------------------------------------------------------------------------------- /CAD/DigitizeMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/DigitizeMode.h -------------------------------------------------------------------------------- /CAD/DigitizedPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/DigitizedPoint.cpp -------------------------------------------------------------------------------- /CAD/DigitizedPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/DigitizedPoint.h -------------------------------------------------------------------------------- /CAD/EndedObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/EndedObject.cpp -------------------------------------------------------------------------------- /CAD/EndedObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/EndedObject.h -------------------------------------------------------------------------------- /CAD/ExtrudedObj.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" -------------------------------------------------------------------------------- /CAD/ExtrudedObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ExtrudedObj.h -------------------------------------------------------------------------------- /CAD/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Filter.cpp -------------------------------------------------------------------------------- /CAD/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Filter.h -------------------------------------------------------------------------------- /CAD/Grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Grid.cpp -------------------------------------------------------------------------------- /CAD/Grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Grid.h -------------------------------------------------------------------------------- /CAD/GripData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/GripData.h -------------------------------------------------------------------------------- /CAD/Gripper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Gripper.cpp -------------------------------------------------------------------------------- /CAD/Gripper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Gripper.h -------------------------------------------------------------------------------- /CAD/GripperSelTransform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/GripperSelTransform.cpp -------------------------------------------------------------------------------- /CAD/GripperSelTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/GripperSelTransform.h -------------------------------------------------------------------------------- /CAD/GripperTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/GripperTypes.h -------------------------------------------------------------------------------- /CAD/Group.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Group.cpp -------------------------------------------------------------------------------- /CAD/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Group.h -------------------------------------------------------------------------------- /CAD/HArc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HArc.cpp -------------------------------------------------------------------------------- /CAD/HArc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HArc.h -------------------------------------------------------------------------------- /CAD/HCircle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HCircle.cpp -------------------------------------------------------------------------------- /CAD/HCircle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HCircle.h -------------------------------------------------------------------------------- /CAD/HDxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HDxf.cpp -------------------------------------------------------------------------------- /CAD/HDxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HDxf.h -------------------------------------------------------------------------------- /CAD/HILine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HILine.cpp -------------------------------------------------------------------------------- /CAD/HILine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HILine.h -------------------------------------------------------------------------------- /CAD/HLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HLine.cpp -------------------------------------------------------------------------------- /CAD/HLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HLine.h -------------------------------------------------------------------------------- /CAD/HPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HPoint.cpp -------------------------------------------------------------------------------- /CAD/HPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HPoint.h -------------------------------------------------------------------------------- /CAD/HText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HText.cpp -------------------------------------------------------------------------------- /CAD/HText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HText.h -------------------------------------------------------------------------------- /CAD/HXml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HXml.cpp -------------------------------------------------------------------------------- /CAD/HXml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HXml.h -------------------------------------------------------------------------------- /CAD/HeeksColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksColor.cpp -------------------------------------------------------------------------------- /CAD/HeeksColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksColor.h -------------------------------------------------------------------------------- /CAD/HeeksFont.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksFont.cpp -------------------------------------------------------------------------------- /CAD/HeeksFont.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksFont.h -------------------------------------------------------------------------------- /CAD/HeeksFontData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksFontData.h -------------------------------------------------------------------------------- /CAD/HeeksFontLineData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksFontLineData.h -------------------------------------------------------------------------------- /CAD/HeeksObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksObj.cpp -------------------------------------------------------------------------------- /CAD/HeeksObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/HeeksObj.h -------------------------------------------------------------------------------- /CAD/History.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/History.cpp -------------------------------------------------------------------------------- /CAD/History.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/History.h -------------------------------------------------------------------------------- /CAD/IPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/IPoint.h -------------------------------------------------------------------------------- /CAD/IdNamedObj.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/IdNamedObj.cpp -------------------------------------------------------------------------------- /CAD/IdNamedObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/IdNamedObj.h -------------------------------------------------------------------------------- /CAD/IdNamedObjList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/IdNamedObjList.cpp -------------------------------------------------------------------------------- /CAD/IdNamedObjList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/IdNamedObjList.h -------------------------------------------------------------------------------- /CAD/Index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Index.h -------------------------------------------------------------------------------- /CAD/InputMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/InputMode.h -------------------------------------------------------------------------------- /CAD/KeyCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/KeyCode.h -------------------------------------------------------------------------------- /CAD/LeftAndRight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/LeftAndRight.cpp -------------------------------------------------------------------------------- /CAD/LeftAndRight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/LeftAndRight.h -------------------------------------------------------------------------------- /CAD/MagDragWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/MagDragWindow.cpp -------------------------------------------------------------------------------- /CAD/MagDragWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/MagDragWindow.h -------------------------------------------------------------------------------- /CAD/MarkedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/MarkedList.cpp -------------------------------------------------------------------------------- /CAD/MarkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/MarkedList.h -------------------------------------------------------------------------------- /CAD/Material.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Material.h -------------------------------------------------------------------------------- /CAD/MouseEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/MouseEvent.h -------------------------------------------------------------------------------- /CAD/ObjList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ObjList.cpp -------------------------------------------------------------------------------- /CAD/ObjList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ObjList.h -------------------------------------------------------------------------------- /CAD/Observer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Observer.h -------------------------------------------------------------------------------- /CAD/Picking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Picking.cpp -------------------------------------------------------------------------------- /CAD/Picking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Picking.h -------------------------------------------------------------------------------- /CAD/PointOrWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PointOrWindow.cpp -------------------------------------------------------------------------------- /CAD/PointOrWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PointOrWindow.h -------------------------------------------------------------------------------- /CAD/Property.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Property.cpp -------------------------------------------------------------------------------- /CAD/Property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Property.h -------------------------------------------------------------------------------- /CAD/PropertyChange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PropertyChange.cpp -------------------------------------------------------------------------------- /CAD/PropertyChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PropertyChange.h -------------------------------------------------------------------------------- /CAD/PropertyGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PropertyGeom.cpp -------------------------------------------------------------------------------- /CAD/PropertyGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PropertyGeom.h -------------------------------------------------------------------------------- /CAD/PyBaseObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PyBaseObject.cpp -------------------------------------------------------------------------------- /CAD/PyBaseObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PyBaseObject.h -------------------------------------------------------------------------------- /CAD/PyWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PyWrapper.cpp -------------------------------------------------------------------------------- /CAD/PyWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PyWrapper.h -------------------------------------------------------------------------------- /CAD/PythonStuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/PythonStuff.cpp -------------------------------------------------------------------------------- /CAD/RemoveOrAddTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/RemoveOrAddTool.cpp -------------------------------------------------------------------------------- /CAD/RemoveOrAddTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/RemoveOrAddTool.h -------------------------------------------------------------------------------- /CAD/Ruler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Ruler.cpp -------------------------------------------------------------------------------- /CAD/Ruler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Ruler.h -------------------------------------------------------------------------------- /CAD/Sketch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Sketch.cpp -------------------------------------------------------------------------------- /CAD/Sketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Sketch.h -------------------------------------------------------------------------------- /CAD/SketchOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/SketchOrder.h -------------------------------------------------------------------------------- /CAD/StlSolid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/StlSolid.cpp -------------------------------------------------------------------------------- /CAD/StlSolid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/StlSolid.h -------------------------------------------------------------------------------- /CAD/StretchTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/StretchTool.cpp -------------------------------------------------------------------------------- /CAD/StretchTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/StretchTool.h -------------------------------------------------------------------------------- /CAD/TransformTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/TransformTool.cpp -------------------------------------------------------------------------------- /CAD/TransformTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/TransformTool.h -------------------------------------------------------------------------------- /CAD/Undoable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Undoable.h -------------------------------------------------------------------------------- /CAD/ViewPanning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewPanning.cpp -------------------------------------------------------------------------------- /CAD/ViewPanning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewPanning.h -------------------------------------------------------------------------------- /CAD/ViewPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewPoint.cpp -------------------------------------------------------------------------------- /CAD/ViewPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewPoint.h -------------------------------------------------------------------------------- /CAD/ViewRotating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewRotating.cpp -------------------------------------------------------------------------------- /CAD/ViewRotating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewRotating.h -------------------------------------------------------------------------------- /CAD/ViewZooming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewZooming.cpp -------------------------------------------------------------------------------- /CAD/ViewZooming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/ViewZooming.h -------------------------------------------------------------------------------- /CAD/Viewport.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Viewport.cpp -------------------------------------------------------------------------------- /CAD/Viewport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Viewport.h -------------------------------------------------------------------------------- /CAD/Window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Window.cpp -------------------------------------------------------------------------------- /CAD/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/Window.h -------------------------------------------------------------------------------- /CAD/dxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/dxf.cpp -------------------------------------------------------------------------------- /CAD/dxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/dxf.h -------------------------------------------------------------------------------- /CAD/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/stdafx.cpp -------------------------------------------------------------------------------- /CAD/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/stdafx.h -------------------------------------------------------------------------------- /CAD/strconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/strconv.cpp -------------------------------------------------------------------------------- /CAD/strconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/strconv.h -------------------------------------------------------------------------------- /CAD/svg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/svg.cpp -------------------------------------------------------------------------------- /CAD/svg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/svg.h -------------------------------------------------------------------------------- /CAD/tinystr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/tinystr.cpp -------------------------------------------------------------------------------- /CAD/tinystr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/tinystr.h -------------------------------------------------------------------------------- /CAD/tinyxml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/tinyxml.cpp -------------------------------------------------------------------------------- /CAD/tinyxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/tinyxml.h -------------------------------------------------------------------------------- /CAD/tinyxmlerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/tinyxmlerror.cpp -------------------------------------------------------------------------------- /CAD/tinyxmlparser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CAD/tinyxmlparser.cpp -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ContextTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/ContextTool.py -------------------------------------------------------------------------------- /ConvertText.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/ConvertText.bat -------------------------------------------------------------------------------- /ConvertText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/ConvertText.py -------------------------------------------------------------------------------- /DigitizeMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/DigitizeMode.py -------------------------------------------------------------------------------- /Drawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Drawing.py -------------------------------------------------------------------------------- /EllipseDrawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/EllipseDrawing.py -------------------------------------------------------------------------------- /FilterDlg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/FilterDlg.py -------------------------------------------------------------------------------- /Frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Frame.py -------------------------------------------------------------------------------- /Gear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Gear.py -------------------------------------------------------------------------------- /Geom/Arc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Arc.cpp -------------------------------------------------------------------------------- /Geom/Arc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Arc.h -------------------------------------------------------------------------------- /Geom/Area.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Area.cpp -------------------------------------------------------------------------------- /Geom/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Area.h -------------------------------------------------------------------------------- /Geom/AreaCavC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/AreaCavC.cpp -------------------------------------------------------------------------------- /Geom/AreaClipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/AreaClipper.cpp -------------------------------------------------------------------------------- /Geom/AreaDxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/AreaDxf.cpp -------------------------------------------------------------------------------- /Geom/AreaDxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/AreaDxf.h -------------------------------------------------------------------------------- /Geom/AreaOrderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/AreaOrderer.cpp -------------------------------------------------------------------------------- /Geom/AreaOrderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/AreaOrderer.h -------------------------------------------------------------------------------- /Geom/AreaPocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/AreaPocket.cpp -------------------------------------------------------------------------------- /Geom/Box.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Box.cpp -------------------------------------------------------------------------------- /Geom/Box.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Box.h -------------------------------------------------------------------------------- /Geom/Box2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Box2D.h -------------------------------------------------------------------------------- /Geom/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CMakeLists.txt -------------------------------------------------------------------------------- /Geom/CavalierContours/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/ReadMe.txt -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/internal/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/internal/common.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/internal/diagnostics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/internal/diagnostics.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/intrcircle2circle2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/intrcircle2circle2.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/intrlineseg2circle2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/intrlineseg2circle2.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/intrlineseg2lineseg2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/intrlineseg2lineseg2.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/mathutils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/mathutils.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/plinesegment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/plinesegment.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/polyline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/polyline.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/polylinecombine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/polylinecombine.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/polylineintersects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/polylineintersects.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/polylineoffset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/polylineoffset.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/polylineoffsetislands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/polylineoffsetislands.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/staticspatialindex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/staticspatialindex.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/vector.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/include/cavc/vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/include/cavc/vector2.hpp -------------------------------------------------------------------------------- /Geom/CavalierContours/src/cavaliercontours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/CavalierContours/src/cavaliercontours.cpp -------------------------------------------------------------------------------- /Geom/Circle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Circle.cpp -------------------------------------------------------------------------------- /Geom/Construction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Construction.cpp -------------------------------------------------------------------------------- /Geom/Curve.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Curve.cpp -------------------------------------------------------------------------------- /Geom/Curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Curve.h -------------------------------------------------------------------------------- /Geom/Curve3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Curve3D.cpp -------------------------------------------------------------------------------- /Geom/Curve3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Curve3D.h -------------------------------------------------------------------------------- /Geom/Finite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Finite.cpp -------------------------------------------------------------------------------- /Geom/Geom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Geom.cpp -------------------------------------------------------------------------------- /Geom/Geom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Geom.h -------------------------------------------------------------------------------- /Geom/Geom.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Geom.sln -------------------------------------------------------------------------------- /Geom/Geom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Geom.vcxproj -------------------------------------------------------------------------------- /Geom/HeeksGeomDxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/HeeksGeomDxf.cpp -------------------------------------------------------------------------------- /Geom/HeeksGeomDxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/HeeksGeomDxf.h -------------------------------------------------------------------------------- /Geom/MachiningArea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/MachiningArea.h -------------------------------------------------------------------------------- /Geom/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Matrix.cpp -------------------------------------------------------------------------------- /Geom/Mesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Mesh.cpp -------------------------------------------------------------------------------- /Geom/Mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Mesh.h -------------------------------------------------------------------------------- /Geom/Mosaic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Mosaic.cpp -------------------------------------------------------------------------------- /Geom/Mosaic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Mosaic.h -------------------------------------------------------------------------------- /Geom/OctTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/OctTree.cpp -------------------------------------------------------------------------------- /Geom/OctTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/OctTree.h -------------------------------------------------------------------------------- /Geom/Offset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Offset.cpp -------------------------------------------------------------------------------- /Geom/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Point.h -------------------------------------------------------------------------------- /Geom/PythonStuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/PythonStuff.cpp -------------------------------------------------------------------------------- /Geom/PythonStuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/PythonStuff.h -------------------------------------------------------------------------------- /Geom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/README -------------------------------------------------------------------------------- /Geom/Tris.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Tris.cpp -------------------------------------------------------------------------------- /Geom/Tris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/Tris.h -------------------------------------------------------------------------------- /Geom/clipper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/clipper.cpp -------------------------------------------------------------------------------- /Geom/clipper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/clipper.hpp -------------------------------------------------------------------------------- /Geom/dxf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/dxf.cpp -------------------------------------------------------------------------------- /Geom/dxf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/dxf.h -------------------------------------------------------------------------------- /Geom/earcut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/earcut.h -------------------------------------------------------------------------------- /Geom/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Geom/geometry.h -------------------------------------------------------------------------------- /GraphicsCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/GraphicsCanvas.py -------------------------------------------------------------------------------- /HDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HDialog.py -------------------------------------------------------------------------------- /HImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HImage.py -------------------------------------------------------------------------------- /Heeks2.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Heeks2.desktop -------------------------------------------------------------------------------- /Heeks2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Heeks2.svg -------------------------------------------------------------------------------- /HeeksCAD.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HeeksCAD.bat -------------------------------------------------------------------------------- /HeeksCAD.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HeeksCAD.iss -------------------------------------------------------------------------------- /HeeksConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HeeksConfig.py -------------------------------------------------------------------------------- /HeeksFont.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HeeksFont.py -------------------------------------------------------------------------------- /HeeksFontLines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HeeksFontLines.py -------------------------------------------------------------------------------- /HeeksObjDlg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/HeeksObjDlg.py -------------------------------------------------------------------------------- /InputMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/InputMode.py -------------------------------------------------------------------------------- /InputModeCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/InputModeCanvas.py -------------------------------------------------------------------------------- /Js.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Js.py -------------------------------------------------------------------------------- /Key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Key.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/LICENSE -------------------------------------------------------------------------------- /LeftAndRight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/LeftAndRight.py -------------------------------------------------------------------------------- /LineArcDrawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/LineArcDrawing.py -------------------------------------------------------------------------------- /Mf3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Mf3.py -------------------------------------------------------------------------------- /Mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Mouse.py -------------------------------------------------------------------------------- /NiceTextCtrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/NiceTextCtrl.py -------------------------------------------------------------------------------- /ObjPropsCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/ObjPropsCanvas.py -------------------------------------------------------------------------------- /Object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Object.py -------------------------------------------------------------------------------- /PictureFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/PictureFrame.py -------------------------------------------------------------------------------- /PointDrawing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/PointDrawing.py -------------------------------------------------------------------------------- /PreBuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/PreBuild.py -------------------------------------------------------------------------------- /Printout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Printout.py -------------------------------------------------------------------------------- /PropertiesCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/PropertiesCanvas.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/README.md -------------------------------------------------------------------------------- /RefreshObserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/RefreshObserver.py -------------------------------------------------------------------------------- /Ribbon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Ribbon.py -------------------------------------------------------------------------------- /Run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Run.bat -------------------------------------------------------------------------------- /Run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Run.py -------------------------------------------------------------------------------- /SelectMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/SelectMode.py -------------------------------------------------------------------------------- /SolidApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/SolidApp.py -------------------------------------------------------------------------------- /Splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Splash.png -------------------------------------------------------------------------------- /Splash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Splash.py -------------------------------------------------------------------------------- /Splash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Splash.svg -------------------------------------------------------------------------------- /Step/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/CMakeLists.txt -------------------------------------------------------------------------------- /Step/Cone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Cone.cpp -------------------------------------------------------------------------------- /Step/Cone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Cone.h -------------------------------------------------------------------------------- /Step/ConversionTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ConversionTools.cpp -------------------------------------------------------------------------------- /Step/ConversionTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ConversionTools.h -------------------------------------------------------------------------------- /Step/CoordinateSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/CoordinateSystem.cpp -------------------------------------------------------------------------------- /Step/CoordinateSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/CoordinateSystem.h -------------------------------------------------------------------------------- /Step/Cuboid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Cuboid.cpp -------------------------------------------------------------------------------- /Step/Cuboid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Cuboid.h -------------------------------------------------------------------------------- /Step/Cylinder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Cylinder.cpp -------------------------------------------------------------------------------- /Step/Cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Cylinder.h -------------------------------------------------------------------------------- /Step/Edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Edge.cpp -------------------------------------------------------------------------------- /Step/Edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Edge.h -------------------------------------------------------------------------------- /Step/EdgeBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/EdgeBlend.h -------------------------------------------------------------------------------- /Step/EllipseDrawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/EllipseDrawing.cpp -------------------------------------------------------------------------------- /Step/EllipseDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/EllipseDrawing.h -------------------------------------------------------------------------------- /Step/Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Face.cpp -------------------------------------------------------------------------------- /Step/Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Face.h -------------------------------------------------------------------------------- /Step/FaceTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/FaceTools.cpp -------------------------------------------------------------------------------- /Step/FaceTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/FaceTools.h -------------------------------------------------------------------------------- /Step/HEllipse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/HEllipse.cpp -------------------------------------------------------------------------------- /Step/HEllipse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/HEllipse.h -------------------------------------------------------------------------------- /Step/HSpline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/HSpline.cpp -------------------------------------------------------------------------------- /Step/HSpline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/HSpline.h -------------------------------------------------------------------------------- /Step/Loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Loop.cpp -------------------------------------------------------------------------------- /Step/Loop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Loop.h -------------------------------------------------------------------------------- /Step/NurbSurfaceParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/NurbSurfaceParams.h -------------------------------------------------------------------------------- /Step/OCCGeom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/OCCGeom.cpp -------------------------------------------------------------------------------- /Step/OCCGeom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/OCCGeom.h -------------------------------------------------------------------------------- /Step/OCCProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/OCCProperty.h -------------------------------------------------------------------------------- /Step/PropertySolid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/PropertySolid.cpp -------------------------------------------------------------------------------- /Step/PropertySolid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/PropertySolid.h -------------------------------------------------------------------------------- /Step/PythonStuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/PythonStuff.cpp -------------------------------------------------------------------------------- /Step/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ReadMe.txt -------------------------------------------------------------------------------- /Step/RuledSurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/RuledSurface.cpp -------------------------------------------------------------------------------- /Step/RuledSurface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/RuledSurface.h -------------------------------------------------------------------------------- /Step/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Settings.cpp -------------------------------------------------------------------------------- /Step/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Settings.h -------------------------------------------------------------------------------- /Step/Shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Shape.cpp -------------------------------------------------------------------------------- /Step/Shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Shape.h -------------------------------------------------------------------------------- /Step/ShapeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ShapeData.cpp -------------------------------------------------------------------------------- /Step/ShapeData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ShapeData.h -------------------------------------------------------------------------------- /Step/ShapeTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ShapeTools.cpp -------------------------------------------------------------------------------- /Step/ShapeTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ShapeTools.h -------------------------------------------------------------------------------- /Step/Solid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Solid.cpp -------------------------------------------------------------------------------- /Step/Solid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Solid.h -------------------------------------------------------------------------------- /Step/SolidTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/SolidTools.cpp -------------------------------------------------------------------------------- /Step/SolidTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/SolidTools.h -------------------------------------------------------------------------------- /Step/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Sphere.cpp -------------------------------------------------------------------------------- /Step/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Sphere.h -------------------------------------------------------------------------------- /Step/Step.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Step.cbp -------------------------------------------------------------------------------- /Step/Step.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Step.sln -------------------------------------------------------------------------------- /Step/Step.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Step.vcxproj -------------------------------------------------------------------------------- /Step/StepFileObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/StepFileObject.cpp -------------------------------------------------------------------------------- /Step/StepFileObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/StepFileObject.h -------------------------------------------------------------------------------- /Step/Vertex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Vertex.cpp -------------------------------------------------------------------------------- /Step/Vertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Vertex.h -------------------------------------------------------------------------------- /Step/Wire.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Wire.cpp -------------------------------------------------------------------------------- /Step/Wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/Wire.h -------------------------------------------------------------------------------- /Step/ammend.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ammend.bat -------------------------------------------------------------------------------- /Step/ammend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/ammend.py -------------------------------------------------------------------------------- /Step/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/stdafx.cpp -------------------------------------------------------------------------------- /Step/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Step/stdafx.h -------------------------------------------------------------------------------- /Svg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Svg.py -------------------------------------------------------------------------------- /TextCurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/TextCurve.py -------------------------------------------------------------------------------- /ToolBarTool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/ToolBarTool.py -------------------------------------------------------------------------------- /ToolImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/ToolImage.py -------------------------------------------------------------------------------- /Transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Transform.py -------------------------------------------------------------------------------- /TreeCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/TreeCanvas.py -------------------------------------------------------------------------------- /UbuntuBuild.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/UbuntuBuild.txt -------------------------------------------------------------------------------- /Wrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/Wrl.py -------------------------------------------------------------------------------- /arial font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/arial font.svg -------------------------------------------------------------------------------- /bitmaps/about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/about.png -------------------------------------------------------------------------------- /bitmaps/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/add.png -------------------------------------------------------------------------------- /bitmaps/angle/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/angle/line.png -------------------------------------------------------------------------------- /bitmaps/angle/xy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/angle/xy.png -------------------------------------------------------------------------------- /bitmaps/angle/xz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/angle/xz.png -------------------------------------------------------------------------------- /bitmaps/angle/yz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/angle/yz.png -------------------------------------------------------------------------------- /bitmaps/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/arc.png -------------------------------------------------------------------------------- /bitmaps/bitmaps.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/bitmaps.svg -------------------------------------------------------------------------------- /bitmaps/centre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/centre.png -------------------------------------------------------------------------------- /bitmaps/centregray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/centregray.png -------------------------------------------------------------------------------- /bitmaps/chamfer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/chamfer.png -------------------------------------------------------------------------------- /bitmaps/circ2p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/circ2p.png -------------------------------------------------------------------------------- /bitmaps/circ3p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/circ3p.png -------------------------------------------------------------------------------- /bitmaps/circles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/circles.png -------------------------------------------------------------------------------- /bitmaps/circpr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/circpr.png -------------------------------------------------------------------------------- /bitmaps/common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/common.png -------------------------------------------------------------------------------- /bitmaps/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/cone.png -------------------------------------------------------------------------------- /bitmaps/coords3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/coords3.png -------------------------------------------------------------------------------- /bitmaps/coordsys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/coordsys.png -------------------------------------------------------------------------------- /bitmaps/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/copy.png -------------------------------------------------------------------------------- /bitmaps/copym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/copym.png -------------------------------------------------------------------------------- /bitmaps/copyr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/copyr.png -------------------------------------------------------------------------------- /bitmaps/copyt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/copyt.png -------------------------------------------------------------------------------- /bitmaps/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/cube.png -------------------------------------------------------------------------------- /bitmaps/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/cut.png -------------------------------------------------------------------------------- /bitmaps/cyl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/cyl.png -------------------------------------------------------------------------------- /bitmaps/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/delete.png -------------------------------------------------------------------------------- /bitmaps/dimension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/dimension.png -------------------------------------------------------------------------------- /bitmaps/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/edit.png -------------------------------------------------------------------------------- /bitmaps/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/empty.png -------------------------------------------------------------------------------- /bitmaps/enddraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/enddraw.png -------------------------------------------------------------------------------- /bitmaps/endof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/endof.png -------------------------------------------------------------------------------- /bitmaps/endofgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/endofgray.png -------------------------------------------------------------------------------- /bitmaps/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/exit.png -------------------------------------------------------------------------------- /bitmaps/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/export.png -------------------------------------------------------------------------------- /bitmaps/extrude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/extrude.png -------------------------------------------------------------------------------- /bitmaps/face2sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/face2sketch.png -------------------------------------------------------------------------------- /bitmaps/facerch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/facerch.png -------------------------------------------------------------------------------- /bitmaps/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/file.png -------------------------------------------------------------------------------- /bitmaps/fillet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/fillet.png -------------------------------------------------------------------------------- /bitmaps/filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/filter.png -------------------------------------------------------------------------------- /bitmaps/fitarcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/fitarcs.png -------------------------------------------------------------------------------- /bitmaps/fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/fullscreen.png -------------------------------------------------------------------------------- /bitmaps/fulltext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/fulltext.png -------------------------------------------------------------------------------- /bitmaps/fuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/fuse.png -------------------------------------------------------------------------------- /bitmaps/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/gear.png -------------------------------------------------------------------------------- /bitmaps/geom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/geom.png -------------------------------------------------------------------------------- /bitmaps/hidedatum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/hidedatum.png -------------------------------------------------------------------------------- /bitmaps/hidefacenormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/hidefacenormals.png -------------------------------------------------------------------------------- /bitmaps/iline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/iline.png -------------------------------------------------------------------------------- /bitmaps/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/import.png -------------------------------------------------------------------------------- /bitmaps/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/input.png -------------------------------------------------------------------------------- /bitmaps/inputgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/inputgray.png -------------------------------------------------------------------------------- /bitmaps/inters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/inters.png -------------------------------------------------------------------------------- /bitmaps/intersgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/intersgray.png -------------------------------------------------------------------------------- /bitmaps/la2face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/la2face.png -------------------------------------------------------------------------------- /bitmaps/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/line.png -------------------------------------------------------------------------------- /bitmaps/lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/lines.png -------------------------------------------------------------------------------- /bitmaps/mag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/mag.png -------------------------------------------------------------------------------- /bitmaps/magextents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magextents.png -------------------------------------------------------------------------------- /bitmaps/magnorot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magnorot.png -------------------------------------------------------------------------------- /bitmaps/magprev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magprev.png -------------------------------------------------------------------------------- /bitmaps/magxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magxy.png -------------------------------------------------------------------------------- /bitmaps/magxym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magxym.png -------------------------------------------------------------------------------- /bitmaps/magxyz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magxyz.png -------------------------------------------------------------------------------- /bitmaps/magxz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magxz.png -------------------------------------------------------------------------------- /bitmaps/magxzm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magxzm.png -------------------------------------------------------------------------------- /bitmaps/magyz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magyz.png -------------------------------------------------------------------------------- /bitmaps/magyzm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/magyzm.png -------------------------------------------------------------------------------- /bitmaps/makesketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/makesketch.png -------------------------------------------------------------------------------- /bitmaps/measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/measure.png -------------------------------------------------------------------------------- /bitmaps/midpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/midpoint.png -------------------------------------------------------------------------------- /bitmaps/midpointgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/midpointgray.png -------------------------------------------------------------------------------- /bitmaps/mirror/horiz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/mirror/horiz.png -------------------------------------------------------------------------------- /bitmaps/mirror/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/mirror/other.png -------------------------------------------------------------------------------- /bitmaps/mirror/vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/mirror/vert.png -------------------------------------------------------------------------------- /bitmaps/mirror/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/mirror/z.png -------------------------------------------------------------------------------- /bitmaps/movem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/movem.png -------------------------------------------------------------------------------- /bitmaps/mover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/mover.png -------------------------------------------------------------------------------- /bitmaps/moves.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/moves.png -------------------------------------------------------------------------------- /bitmaps/movet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/movet.png -------------------------------------------------------------------------------- /bitmaps/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/new.png -------------------------------------------------------------------------------- /bitmaps/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/objects.png -------------------------------------------------------------------------------- /bitmaps/objectsgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/objectsgray.png -------------------------------------------------------------------------------- /bitmaps/obround.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/obround.png -------------------------------------------------------------------------------- /bitmaps/offset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/offset.png -------------------------------------------------------------------------------- /bitmaps/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/open.png -------------------------------------------------------------------------------- /bitmaps/pan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/pan.png -------------------------------------------------------------------------------- /bitmaps/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/paste.png -------------------------------------------------------------------------------- /bitmaps/pentagon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/pentagon.png -------------------------------------------------------------------------------- /bitmaps/pickpos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/pickpos.png -------------------------------------------------------------------------------- /bitmaps/pixelated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/pixelated.png -------------------------------------------------------------------------------- /bitmaps/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/point.png -------------------------------------------------------------------------------- /bitmaps/ppreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/ppreview.png -------------------------------------------------------------------------------- /bitmaps/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/print.png -------------------------------------------------------------------------------- /bitmaps/properties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/properties.png -------------------------------------------------------------------------------- /bitmaps/propertiesgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/propertiesgray.png -------------------------------------------------------------------------------- /bitmaps/psetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/psetup.png -------------------------------------------------------------------------------- /bitmaps/recent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/recent.png -------------------------------------------------------------------------------- /bitmaps/rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/rect.png -------------------------------------------------------------------------------- /bitmaps/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/redo.png -------------------------------------------------------------------------------- /bitmaps/redraw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/redraw.png -------------------------------------------------------------------------------- /bitmaps/restore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/restore.png -------------------------------------------------------------------------------- /bitmaps/revolve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/revolve.png -------------------------------------------------------------------------------- /bitmaps/rotate free.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/rotate free.png -------------------------------------------------------------------------------- /bitmaps/rotate upright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/rotate upright.png -------------------------------------------------------------------------------- /bitmaps/rotface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/rotface.png -------------------------------------------------------------------------------- /bitmaps/ruled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/ruled.png -------------------------------------------------------------------------------- /bitmaps/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/save.png -------------------------------------------------------------------------------- /bitmaps/saveas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/saveas.png -------------------------------------------------------------------------------- /bitmaps/section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/section.png -------------------------------------------------------------------------------- /bitmaps/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/select.png -------------------------------------------------------------------------------- /bitmaps/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/settings.png -------------------------------------------------------------------------------- /bitmaps/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/shadow.png -------------------------------------------------------------------------------- /bitmaps/showdatum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/showdatum.png -------------------------------------------------------------------------------- /bitmaps/showfacenormals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/showfacenormals.png -------------------------------------------------------------------------------- /bitmaps/sketchcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/sketchcut.png -------------------------------------------------------------------------------- /bitmaps/sketchintersect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/sketchintersect.png -------------------------------------------------------------------------------- /bitmaps/sketchjoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/sketchjoin.png -------------------------------------------------------------------------------- /bitmaps/sketchunite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/sketchunite.png -------------------------------------------------------------------------------- /bitmaps/smoothed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/smoothed.png -------------------------------------------------------------------------------- /bitmaps/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/snap.png -------------------------------------------------------------------------------- /bitmaps/snapgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/snapgray.png -------------------------------------------------------------------------------- /bitmaps/solids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/solids.png -------------------------------------------------------------------------------- /bitmaps/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/sphere.png -------------------------------------------------------------------------------- /bitmaps/splitsketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/splitsketch.png -------------------------------------------------------------------------------- /bitmaps/splpts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/splpts.png -------------------------------------------------------------------------------- /bitmaps/square.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/square.bat -------------------------------------------------------------------------------- /bitmaps/square.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/square.py -------------------------------------------------------------------------------- /bitmaps/subtract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/subtract.png -------------------------------------------------------------------------------- /bitmaps/sweep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/sweep.png -------------------------------------------------------------------------------- /bitmaps/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/text.png -------------------------------------------------------------------------------- /bitmaps/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/title.png -------------------------------------------------------------------------------- /bitmaps/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/undo.png -------------------------------------------------------------------------------- /bitmaps/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/unknown.png -------------------------------------------------------------------------------- /bitmaps/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/view.png -------------------------------------------------------------------------------- /bitmaps/viewrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/viewrot.png -------------------------------------------------------------------------------- /bitmaps/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/bitmaps/zoom.png -------------------------------------------------------------------------------- /cutsphere.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/cutsphere.stl -------------------------------------------------------------------------------- /debian/cad-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/debian/cad-dev.install -------------------------------------------------------------------------------- /debian/cad.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/debian/cad.install -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /heeks2.sh: -------------------------------------------------------------------------------- 1 | python3 /usr/PyCAD/startcad.py 2 | -------------------------------------------------------------------------------- /heekscad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/heekscad.ico -------------------------------------------------------------------------------- /heekscad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/heekscad.png -------------------------------------------------------------------------------- /icons/arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/arc.png -------------------------------------------------------------------------------- /icons/branch_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/branch_end.png -------------------------------------------------------------------------------- /icons/branch_end_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/branch_end_minus.png -------------------------------------------------------------------------------- /icons/branch_end_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/branch_end_plus.png -------------------------------------------------------------------------------- /icons/branch_minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/branch_minus.png -------------------------------------------------------------------------------- /icons/branch_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/branch_plus.png -------------------------------------------------------------------------------- /icons/branch_split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/branch_split.png -------------------------------------------------------------------------------- /icons/branch_trunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/branch_trunk.png -------------------------------------------------------------------------------- /icons/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/circle.png -------------------------------------------------------------------------------- /icons/cone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/cone.png -------------------------------------------------------------------------------- /icons/coordsys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/coordsys.png -------------------------------------------------------------------------------- /icons/cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/cube.png -------------------------------------------------------------------------------- /icons/cyl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/cyl.png -------------------------------------------------------------------------------- /icons/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/edge.png -------------------------------------------------------------------------------- /icons/edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/edges.png -------------------------------------------------------------------------------- /icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/ellipse.png -------------------------------------------------------------------------------- /icons/face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/face.png -------------------------------------------------------------------------------- /icons/faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/faces.png -------------------------------------------------------------------------------- /icons/gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/gear.png -------------------------------------------------------------------------------- /icons/iline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/iline.png -------------------------------------------------------------------------------- /icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/line.png -------------------------------------------------------------------------------- /icons/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/minus.png -------------------------------------------------------------------------------- /icons/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/picture.png -------------------------------------------------------------------------------- /icons/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/plus.png -------------------------------------------------------------------------------- /icons/point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/point.png -------------------------------------------------------------------------------- /icons/sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/sketch.png -------------------------------------------------------------------------------- /icons/solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/solid.png -------------------------------------------------------------------------------- /icons/solids.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/solids.png -------------------------------------------------------------------------------- /icons/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/sphere.png -------------------------------------------------------------------------------- /icons/spline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/spline.png -------------------------------------------------------------------------------- /icons/stlsolid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/stlsolid.png -------------------------------------------------------------------------------- /icons/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/text.png -------------------------------------------------------------------------------- /icons/unknown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/unknown.png -------------------------------------------------------------------------------- /icons/vertex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/vertex.png -------------------------------------------------------------------------------- /icons/vertices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/vertices.png -------------------------------------------------------------------------------- /icons/wire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/wire.png -------------------------------------------------------------------------------- /icons/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/icons/xml.png -------------------------------------------------------------------------------- /logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/logos.svg -------------------------------------------------------------------------------- /shape.step: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/shape.step -------------------------------------------------------------------------------- /simple.STEP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/simple.STEP -------------------------------------------------------------------------------- /simple.heeks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/simple.heeks -------------------------------------------------------------------------------- /startcad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/startcad.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danheeks/PyCAD/HEAD/test.py --------------------------------------------------------------------------------