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

parseFields() static private méthode

static private parseFields ( IfcGeneralProfileProperties gp, List arrFields, int &ipos, ReleaseVersion schema ) : void
gp IfcGeneralProfileProperties
arrFields List
ipos int
schema ReleaseVersion
Résultat void
        internal static void parseFields(IfcGeneralProfileProperties gp, List<string> arrFields, ref int ipos,ReleaseVersion schema)
        {
            IfcProfileProperties.parseFields(gp, arrFields, ref ipos,schema);
            gp.mPhysicalWeight = ParserSTEP.ParseDouble(arrFields[ipos++]);
            gp.mPerimeter = ParserSTEP.ParseDouble(arrFields[ipos++]);
            gp.mMinimumPlateThickness = ParserSTEP.ParseDouble(arrFields[ipos++]);
            gp.mMaximumPlateThickness = ParserSTEP.ParseDouble(arrFields[ipos++]);
            gp.mCrossSectionArea = ParserSTEP.ParseDouble(arrFields[ipos++]);
        }