Ejemplo n.º 1
0
        public static STL ByASCII(string data)
        {
            STL stl = new STL();

            stl.ParseASCII(data);
            return(stl);
        }
 internal Shell(STL stl)
 {
     m_stl = stl;
 }
 public static Shell BySTL(STL stl)
 {
     return(new Shell(stl));
 }