├── .gitignore ├── .gitmodules ├── ApiTest ├── .upgrade-assistant ├── ApiTest.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ └── launchSettings.json ├── obj │ └── Debug │ │ ├── ApiTest.csproj.CoreCompileInputs.cache │ │ ├── ApiTest.csprojAssemblyReference.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache └── upgrade-assistant.clef ├── CSharpCad6 ├── Application.cs ├── CSharpCad6.csproj ├── MatterCadGuiWidget.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── RootSystemWindow.cs ├── CommandLineExamples ├── BedLevelMount │ ├── BedLevelMount.csproj │ ├── MatterCad.cs │ ├── MatterCad.sln │ └── Properties │ │ └── launchSettings.json ├── DialGaugeMount │ ├── DialGaugeMount.csproj │ ├── MatterCad.cs │ └── Properties │ │ └── launchSettings.json ├── PowerSupplyMountingFeet │ ├── MatterCad.cs │ ├── PowerSupplyMountingFeet.csproj │ └── Properties │ │ └── launchSettings.json ├── SpoolBarHolderM90 │ ├── MatterCad.cs │ ├── Properties │ │ └── launchSettings.json │ └── SpoolBarHolderM90.csproj ├── SpoolBearingHolder │ ├── MatterCad.cs │ └── SpoolBearingHolder.csproj ├── StepArmForHobbit │ ├── MatterCad.cs │ └── StepArmForHobbit.csproj ├── TPBinoculars │ ├── MatterCad.cs │ ├── Properties │ │ └── launchSettings.json │ └── TPBinoculars.csproj └── TrainConnector │ ├── MatterCad.cs │ └── TrainConnector.csproj ├── DinamiclyExecuteCode ├── App.config ├── CodeHelper.cs ├── DynCode.csproj ├── DynCode.sln ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── LICENSE ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Screenshot.png └── readme.md ├── Examples ├── LinearExtrude.cs ├── Rotate.cs └── snippet.cs ├── MatterCAD - Design Your 3D Parts In C# MatterHackers.html ├── MatterCAD - Design Your 3D Parts In C# MatterHackers_files ├── 313538905788064.js ├── 561989750567702.js ├── 7CVkr2ch1PloVxbPqSkQtyv1TfDuILg19h8WlTspCtlxPAt4c3GhPoJoh0Ru.png ├── AAWq6WJ0tMYkC_MlRyt1V6VicoC-fUOi_MRZe3QcifHrVlSxqigtER-W1oEi.png ├── DAIz90qRgmQZjCftT5ejMJYsvKBV4nh4FFUJPCXtyJ5cBOe1L6h5KYNxT16U.png ├── LKN3IOS7AZCE3JS3ZJFFRF ├── ZUuuDWD2Z6h2vt3s8qyj3t05ZCkOp3_YsJAQQ6A8C3jV-9jPQ0LJi2Hc-AMv.png ├── a ├── bruha-plugins.js ├── bruha-scripts.js ├── conversion.js ├── css.css ├── dc.js ├── easy-affiliate.js ├── f_AKhimVj4TU5JGlBQ4l9MQCyAb9i_iIAK1RXgK61Mbf_oigBZVKzvnrgrw9.png ├── fbevents.js ├── jquery.js ├── mh-icon.png ├── mh-logo-themed-pixelfit.svg ├── mh-logo-white.svg ├── out.gif ├── out.html ├── out.txt ├── out_002.gif ├── out_002.html ├── out_003.gif ├── out_004.gif ├── out_005.gif ├── out_006.gif ├── out_007.gif ├── public-article.js ├── public-plugins.css ├── public-revised.css └── roundtrip.js ├── MatterCadGui ├── .vs │ └── MatterCadGui │ │ └── v14 │ │ └── .suo ├── CsgEdtors │ ├── CsgEditorBase.cs │ ├── CsgEditorBox.cs │ ├── CsgEditorTranslate.cs │ └── CsgEditorUnion.cs ├── Logo.png ├── MatterCadGui.cs ├── MatterCadGui.csproj ├── MatterCadGui.csproj.user ├── MatterCadGui.sln ├── MatterCadGuiWidget.cs ├── Microsoft.Scripting.dll ├── OrthographicZProjection.cs ├── Parts │ ├── PSEyeHolder.cs │ ├── TrainConnector.cs │ └── test.part ├── PowerSupply.cs └── app.config ├── OpenCSharpCad ├── .gitignore ├── App.config ├── MainWindow.cs ├── OpenCSharpCad.csproj ├── Properties │ └── AssemblyInfo.cs └── Shapes.cs ├── OpenSharpCAD.sln ├── README.md ├── Screenshot 2018-03-30 22.56.56.png ├── Screenshot 2018-03-30 22.57.39.png └── WindowTest ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs └── WindowTest.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/.gitmodules -------------------------------------------------------------------------------- /ApiTest/.upgrade-assistant: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/.upgrade-assistant -------------------------------------------------------------------------------- /ApiTest/ApiTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/ApiTest.csproj -------------------------------------------------------------------------------- /ApiTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/Program.cs -------------------------------------------------------------------------------- /ApiTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ApiTest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/Properties/launchSettings.json -------------------------------------------------------------------------------- /ApiTest/obj/Debug/ApiTest.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 75a6a5afc95bb7493c027301f438800fe597c6fc 2 | -------------------------------------------------------------------------------- /ApiTest/obj/Debug/ApiTest.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/obj/Debug/ApiTest.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /ApiTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /ApiTest/upgrade-assistant.clef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/ApiTest/upgrade-assistant.clef -------------------------------------------------------------------------------- /CSharpCad6/Application.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CSharpCad6/Application.cs -------------------------------------------------------------------------------- /CSharpCad6/CSharpCad6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CSharpCad6/CSharpCad6.csproj -------------------------------------------------------------------------------- /CSharpCad6/MatterCadGuiWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CSharpCad6/MatterCadGuiWidget.cs -------------------------------------------------------------------------------- /CSharpCad6/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CSharpCad6/Program.cs -------------------------------------------------------------------------------- /CSharpCad6/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CSharpCad6/Properties/launchSettings.json -------------------------------------------------------------------------------- /CSharpCad6/RootSystemWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CSharpCad6/RootSystemWindow.cs -------------------------------------------------------------------------------- /CommandLineExamples/BedLevelMount/BedLevelMount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/BedLevelMount/BedLevelMount.csproj -------------------------------------------------------------------------------- /CommandLineExamples/BedLevelMount/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/BedLevelMount/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/BedLevelMount/MatterCad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/BedLevelMount/MatterCad.sln -------------------------------------------------------------------------------- /CommandLineExamples/BedLevelMount/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/BedLevelMount/Properties/launchSettings.json -------------------------------------------------------------------------------- /CommandLineExamples/DialGaugeMount/DialGaugeMount.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/DialGaugeMount/DialGaugeMount.csproj -------------------------------------------------------------------------------- /CommandLineExamples/DialGaugeMount/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/DialGaugeMount/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/DialGaugeMount/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/DialGaugeMount/Properties/launchSettings.json -------------------------------------------------------------------------------- /CommandLineExamples/PowerSupplyMountingFeet/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/PowerSupplyMountingFeet/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/PowerSupplyMountingFeet/PowerSupplyMountingFeet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/PowerSupplyMountingFeet/PowerSupplyMountingFeet.csproj -------------------------------------------------------------------------------- /CommandLineExamples/PowerSupplyMountingFeet/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/PowerSupplyMountingFeet/Properties/launchSettings.json -------------------------------------------------------------------------------- /CommandLineExamples/SpoolBarHolderM90/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/SpoolBarHolderM90/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/SpoolBarHolderM90/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/SpoolBarHolderM90/Properties/launchSettings.json -------------------------------------------------------------------------------- /CommandLineExamples/SpoolBarHolderM90/SpoolBarHolderM90.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/SpoolBarHolderM90/SpoolBarHolderM90.csproj -------------------------------------------------------------------------------- /CommandLineExamples/SpoolBearingHolder/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/SpoolBearingHolder/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/SpoolBearingHolder/SpoolBearingHolder.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/SpoolBearingHolder/SpoolBearingHolder.csproj -------------------------------------------------------------------------------- /CommandLineExamples/StepArmForHobbit/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/StepArmForHobbit/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/StepArmForHobbit/StepArmForHobbit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/StepArmForHobbit/StepArmForHobbit.csproj -------------------------------------------------------------------------------- /CommandLineExamples/TPBinoculars/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/TPBinoculars/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/TPBinoculars/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/TPBinoculars/Properties/launchSettings.json -------------------------------------------------------------------------------- /CommandLineExamples/TPBinoculars/TPBinoculars.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/TPBinoculars/TPBinoculars.csproj -------------------------------------------------------------------------------- /CommandLineExamples/TrainConnector/MatterCad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/TrainConnector/MatterCad.cs -------------------------------------------------------------------------------- /CommandLineExamples/TrainConnector/TrainConnector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/CommandLineExamples/TrainConnector/TrainConnector.csproj -------------------------------------------------------------------------------- /DinamiclyExecuteCode/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/App.config -------------------------------------------------------------------------------- /DinamiclyExecuteCode/CodeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/CodeHelper.cs -------------------------------------------------------------------------------- /DinamiclyExecuteCode/DynCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/DynCode.csproj -------------------------------------------------------------------------------- /DinamiclyExecuteCode/DynCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/DynCode.sln -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Form1.Designer.cs -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Form1.cs -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Form1.resx -------------------------------------------------------------------------------- /DinamiclyExecuteCode/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/LICENSE -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Program.cs -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Properties/Resources.resx -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Properties/Settings.settings -------------------------------------------------------------------------------- /DinamiclyExecuteCode/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/Screenshot.png -------------------------------------------------------------------------------- /DinamiclyExecuteCode/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/DinamiclyExecuteCode/readme.md -------------------------------------------------------------------------------- /Examples/LinearExtrude.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/Examples/LinearExtrude.cs -------------------------------------------------------------------------------- /Examples/Rotate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/Examples/Rotate.cs -------------------------------------------------------------------------------- /Examples/snippet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/Examples/snippet.cs -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers.html -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/313538905788064.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/313538905788064.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/561989750567702.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/561989750567702.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/7CVkr2ch1PloVxbPqSkQtyv1TfDuILg19h8WlTspCtlxPAt4c3GhPoJoh0Ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/7CVkr2ch1PloVxbPqSkQtyv1TfDuILg19h8WlTspCtlxPAt4c3GhPoJoh0Ru.png -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/AAWq6WJ0tMYkC_MlRyt1V6VicoC-fUOi_MRZe3QcifHrVlSxqigtER-W1oEi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/AAWq6WJ0tMYkC_MlRyt1V6VicoC-fUOi_MRZe3QcifHrVlSxqigtER-W1oEi.png -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/DAIz90qRgmQZjCftT5ejMJYsvKBV4nh4FFUJPCXtyJ5cBOe1L6h5KYNxT16U.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/DAIz90qRgmQZjCftT5ejMJYsvKBV4nh4FFUJPCXtyJ5cBOe1L6h5KYNxT16U.png -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/LKN3IOS7AZCE3JS3ZJFFRF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/LKN3IOS7AZCE3JS3ZJFFRF -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/ZUuuDWD2Z6h2vt3s8qyj3t05ZCkOp3_YsJAQQ6A8C3jV-9jPQ0LJi2Hc-AMv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/ZUuuDWD2Z6h2vt3s8qyj3t05ZCkOp3_YsJAQQ6A8C3jV-9jPQ0LJi2Hc-AMv.png -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/a -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/bruha-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/bruha-plugins.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/bruha-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/bruha-scripts.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/conversion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/conversion.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/css.css -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/dc.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/easy-affiliate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/easy-affiliate.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/f_AKhimVj4TU5JGlBQ4l9MQCyAb9i_iIAK1RXgK61Mbf_oigBZVKzvnrgrw9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/f_AKhimVj4TU5JGlBQ4l9MQCyAb9i_iIAK1RXgK61Mbf_oigBZVKzvnrgrw9.png -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/fbevents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/fbevents.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/jquery.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/mh-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/mh-icon.png -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/mh-logo-themed-pixelfit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/mh-logo-themed-pixelfit.svg -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/mh-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/mh-logo-white.svg -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out.gif -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out.txt: -------------------------------------------------------------------------------- 1 | OK! Synced cookie [adrl], demand partner's user ID [MzBlYzE0OWYzMmIxODAxYjA0MDZiOTEzMzQwMGViYWM] -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_002.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_002.gif -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_002.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_002.html -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_003.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_003.gif -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_004.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_004.gif -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_005.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_005.gif -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_006.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_006.gif -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_007.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/out_007.gif -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/public-article.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/public-article.js -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/public-plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/public-plugins.css -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/public-revised.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/public-revised.css -------------------------------------------------------------------------------- /MatterCAD - Design Your 3D Parts In C# MatterHackers_files/roundtrip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCAD - Design Your 3D Parts In C# MatterHackers_files/roundtrip.js -------------------------------------------------------------------------------- /MatterCadGui/.vs/MatterCadGui/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/.vs/MatterCadGui/v14/.suo -------------------------------------------------------------------------------- /MatterCadGui/CsgEdtors/CsgEditorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/CsgEdtors/CsgEditorBase.cs -------------------------------------------------------------------------------- /MatterCadGui/CsgEdtors/CsgEditorBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/CsgEdtors/CsgEditorBox.cs -------------------------------------------------------------------------------- /MatterCadGui/CsgEdtors/CsgEditorTranslate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/CsgEdtors/CsgEditorTranslate.cs -------------------------------------------------------------------------------- /MatterCadGui/CsgEdtors/CsgEditorUnion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/CsgEdtors/CsgEditorUnion.cs -------------------------------------------------------------------------------- /MatterCadGui/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/Logo.png -------------------------------------------------------------------------------- /MatterCadGui/MatterCadGui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/MatterCadGui.cs -------------------------------------------------------------------------------- /MatterCadGui/MatterCadGui.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/MatterCadGui.csproj -------------------------------------------------------------------------------- /MatterCadGui/MatterCadGui.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/MatterCadGui.csproj.user -------------------------------------------------------------------------------- /MatterCadGui/MatterCadGui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/MatterCadGui.sln -------------------------------------------------------------------------------- /MatterCadGui/MatterCadGuiWidget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/MatterCadGuiWidget.cs -------------------------------------------------------------------------------- /MatterCadGui/Microsoft.Scripting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/Microsoft.Scripting.dll -------------------------------------------------------------------------------- /MatterCadGui/OrthographicZProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/OrthographicZProjection.cs -------------------------------------------------------------------------------- /MatterCadGui/Parts/PSEyeHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/Parts/PSEyeHolder.cs -------------------------------------------------------------------------------- /MatterCadGui/Parts/TrainConnector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/Parts/TrainConnector.cs -------------------------------------------------------------------------------- /MatterCadGui/Parts/test.part: -------------------------------------------------------------------------------- 1 | Box(20, 5.8, 12) 2 | -------------------------------------------------------------------------------- /MatterCadGui/PowerSupply.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/PowerSupply.cs -------------------------------------------------------------------------------- /MatterCadGui/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/MatterCadGui/app.config -------------------------------------------------------------------------------- /OpenCSharpCad/.gitignore: -------------------------------------------------------------------------------- 1 | /obj 2 | /bin 3 | -------------------------------------------------------------------------------- /OpenCSharpCad/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/OpenCSharpCad/App.config -------------------------------------------------------------------------------- /OpenCSharpCad/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/OpenCSharpCad/MainWindow.cs -------------------------------------------------------------------------------- /OpenCSharpCad/OpenCSharpCad.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/OpenCSharpCad/OpenCSharpCad.csproj -------------------------------------------------------------------------------- /OpenCSharpCad/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/OpenCSharpCad/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenCSharpCad/Shapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/OpenCSharpCad/Shapes.cs -------------------------------------------------------------------------------- /OpenSharpCAD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/OpenSharpCAD.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot 2018-03-30 22.56.56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/Screenshot 2018-03-30 22.56.56.png -------------------------------------------------------------------------------- /Screenshot 2018-03-30 22.57.39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/Screenshot 2018-03-30 22.57.39.png -------------------------------------------------------------------------------- /WindowTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/WindowTest/App.config -------------------------------------------------------------------------------- /WindowTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/WindowTest/Program.cs -------------------------------------------------------------------------------- /WindowTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/WindowTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindowTest/WindowTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboter/OpenSharpCAD/HEAD/WindowTest/WindowTest.csproj --------------------------------------------------------------------------------