Exemple #1
0
 public void Import(
     string importFileName,
     CSGGroup importGroup,
     CSG sceneGraph,
     CSGApplicationState applicationState,
     ref float[] userDataFloats,
     ref int[] userDataInts,
     ref string userDataString)
 {
     // if importing, set SupportImport to return true and add your import code
 }
Exemple #2
0
        public void Export(
            string filename,
            CSGGroup group,
            CSG sceneGraph,
            CSGApplicationState applicationState,
            ref float[] userDataFloats,
            ref int[] userDataInts,
            ref string userDataString)
        {
            Exporter exporter = new Exporter();

            exporter.Export(filename, sceneGraph, group);
        }