GeometryGym.Ifc.IfcIndexedPolygonalFaceWithVoids.parseFields C# (CSharp) Méthode

parseFields() protected méthode

protected parseFields ( List arrFields, int &ipos ) : void
arrFields List
ipos int
Résultat void
        protected override void parseFields(List<string> arrFields, ref int ipos)
        {
            base.parseFields(arrFields, ref ipos);
            string str = arrFields[ipos++];
            List<string> fields = ParserSTEP.SplitLineFields(str.Substring(1, str.Length - 2));
            mInnerCoordIndices = fields.ConvertAll(x => ParserSTEP.SplitListSTPIntegers(x));
        }

Usage Example

Exemple #1
0
 internal new static IfcIndexedPolygonalFaceWithVoids Parse(string strDef)
 {
     IfcIndexedPolygonalFaceWithVoids s = new IfcIndexedPolygonalFaceWithVoids(); int ipos = 0; s.parseFields(ParserSTEP.SplitLineFields(strDef), ref ipos); return(s);
 }
All Usage Examples Of GeometryGym.Ifc.IfcIndexedPolygonalFaceWithVoids::parseFields