Skip to content

Generate base plates for 3D printing models with various parameters

Notifications You must be signed in to change notification settings

EvgenyMuryshkin/PlateGenerator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PlateGenerator

Generate base plates for 3D printing models with variuos parameters

You need to have Visual Studio or .NET Core 2.2 installed in order to run generator.

Configure and run unit test from Visual Studio or command line to produce STL with base plate.

To tun from command line, cd to planter folder and run

dotnet test --filter SEG5xRAD60xPWDT5_SPD3_CUT05

This tests produces plate with 5 segments, 60mm radius, with spindel hole and a spindel cut.

        [TestMethod]
        public void SEG5xRAD60xPWDT5_SPD3_CUT05()
        {
            var config = new PlateConfig()
            {
                segments = 5,
                plateRadius = 60,
                panelWidth = 5,
                spindelRadius = 3,
                spindelCut = 0.5
            };

            SaveMesh(config);
        }

outout looks like this

mesh

render

About

Generate base plates for 3D printing models with various parameters

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages