├── CatiaCamshaft.sln ├── CatiaCamshaft ├── CatiaCamshaft.csproj ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── app.config ├── bin │ └── Debug │ │ ├── CatiaCamshaft.exe │ │ ├── CatiaCamshaft.exe.config │ │ ├── CatiaCamshaft.pdb │ │ ├── Interop.INFITF.dll │ │ ├── Interop.KnowledgewareTypeLib.dll │ │ ├── Interop.MECMOD.dll │ │ ├── Interop.PARTITF.dll │ │ └── Interop.ProductStructureTypeLib.dll └── obj │ └── Debug │ ├── CatiaCamshaft.csproj.FileListAbsolute.txt │ ├── CatiaCamshaft.csprojResolveAssemblyReference.cache │ ├── CatiaCamshaft.exe │ └── CatiaCamshaft.pdb └── README.md /CatiaCamshaft.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft.sln -------------------------------------------------------------------------------- /CatiaCamshaft/CatiaCamshaft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/CatiaCamshaft.csproj -------------------------------------------------------------------------------- /CatiaCamshaft/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/Program.cs -------------------------------------------------------------------------------- /CatiaCamshaft/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CatiaCamshaft/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/app.config -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/CatiaCamshaft.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/CatiaCamshaft.exe -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/CatiaCamshaft.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/CatiaCamshaft.exe.config -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/CatiaCamshaft.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/CatiaCamshaft.pdb -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/Interop.INFITF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/Interop.INFITF.dll -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/Interop.KnowledgewareTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/Interop.KnowledgewareTypeLib.dll -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/Interop.MECMOD.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/Interop.MECMOD.dll -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/Interop.PARTITF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/Interop.PARTITF.dll -------------------------------------------------------------------------------- /CatiaCamshaft/bin/Debug/Interop.ProductStructureTypeLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/bin/Debug/Interop.ProductStructureTypeLib.dll -------------------------------------------------------------------------------- /CatiaCamshaft/obj/Debug/CatiaCamshaft.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/obj/Debug/CatiaCamshaft.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CatiaCamshaft/obj/Debug/CatiaCamshaft.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/obj/Debug/CatiaCamshaft.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /CatiaCamshaft/obj/Debug/CatiaCamshaft.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/obj/Debug/CatiaCamshaft.exe -------------------------------------------------------------------------------- /CatiaCamshaft/obj/Debug/CatiaCamshaft.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OndrejMikulec/CatiaCamshaft/HEAD/CatiaCamshaft/obj/Debug/CatiaCamshaft.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CatiaCamshaft 2 | Just rewrited to C# from V5Automation manual VB. 3 | --------------------------------------------------------------------------------