コード例 #1
0
ファイル: IFC S.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcStructuralSteelProfileProperties gp, List<string> arrFields, ref int ipos) { IfcStructuralProfileProperties.parseFields(gp, arrFields, ref ipos); gp.mShearAreaZ = ParserSTEP.ParseDouble(arrFields[ipos++]); gp.mShearAreaY = ParserSTEP.ParseDouble(arrFields[ipos++]); gp.mPlasticShapeFactorY = ParserSTEP.ParseDouble(arrFields[ipos++]); gp.mPlasticShapeFactorZ = ParserSTEP.ParseDouble(arrFields[ipos++]); }
コード例 #2
0
ファイル: IFC S.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcStructuralSteelProfileProperties Parse(string strDef) { IfcStructuralSteelProfileProperties p = new IfcStructuralSteelProfileProperties(); int ipos = 0; parseFields(p, ParserSTEP.SplitLineFields(strDef), ref ipos); return p; }
コード例 #3
0
ファイル: IFC S.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcStructuralSteelProfileProperties(IfcStructuralSteelProfileProperties p) : base(p) { mShearAreaZ = p.mShearAreaZ; mShearAreaY = p.mShearAreaY; mPlasticShapeFactorY = p.mPlasticShapeFactorY; mPlasticShapeFactorZ = p.mPlasticShapeFactorZ; }