GeometryGym.Ifc.IfcGeometricSet.parse C# (CSharp) Method

parse() protected method

protected parse ( string str ) : void
str string
return void
        protected void parse(string str)
        {
            mElements = ParserSTEP.SplitListLinks(str.Substring(1, str.Length - 2));
        }

Usage Example

コード例 #1
0
 internal static IfcGeometricSet Parse(string str)
 {
     IfcGeometricSet s = new IfcGeometricSet(); s.parse(str); return(s);
 }
All Usage Examples Of GeometryGym.Ifc.IfcGeometricSet::parse