Hi All,
I am trying to export a pro e model to STLBinary format, here I need to pass the parameter as Csys name. here is the Code
//Get file name of model with out extension and add the STL extension
String sModelName = proeModel.GetFullName() + ".stl";
String Csys = "Default";
STLASCIIExportInstructions STLASCIIInstr;
STLASCIIInstr = pfcModel.STLASCIIExportInstructions_Create(Csys);
//Export STL from Model
proeModel.Export(sModelName, STLASCIIInstr);
Something wrong in this code i am not able to pass the Csys name as default, is there any way to extract the part csys name and assign it here. Or if you have any direct solution for exporting pro e model to STL format , please let me know.
Thanks and regards
Christo Thomas
I am trying to export a pro e model to STLBinary format, here I need to pass the parameter as Csys name. here is the Code
//Get file name of model with out extension and add the STL extension
String sModelName = proeModel.GetFullName() + ".stl";
String Csys = "Default";
STLASCIIExportInstructions STLASCIIInstr;
STLASCIIInstr = pfcModel.STLASCIIExportInstructions_Create(Csys);
//Export STL from Model
proeModel.Export(sModelName, STLASCIIInstr);
Something wrong in this code i am not able to pass the Csys name as default, is there any way to extract the part csys name and assign it here. Or if you have any direct solution for exporting pro e model to STL format , please let me know.
Thanks and regards
Christo Thomas