コード例 #1
0
ファイル: IFC M.cs プロジェクト: jenca-cloud/ggIFC
		internal new static IfcMaterialProfileSetUsageTapering Parse(string strDef) { IfcMaterialProfileSetUsageTapering u = new IfcMaterialProfileSetUsageTapering(); int ipos = 0; parseFields(u, ParserSTEP.SplitLineFields(strDef), ref ipos); return u; }
コード例 #2
0
ファイル: IFC M.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcMaterialProfileSetUsageTapering m, List<string> arrFields, ref int ipos) { IfcMaterialProfileSetUsage.parseFields(m, arrFields, ref ipos); m.mForProfileEndSet = ParserSTEP.ParseLink(arrFields[ipos++]); m.mCardinalEndPoint = (IfcCardinalPointReference)ParserSTEP.ParseInt(arrFields[ipos++]); }
コード例 #3
0
ファイル: IFC M.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcMaterialProfileSetUsageTapering(IfcMaterialProfileSetUsageTapering m) : base(m) { mForProfileSet = m.mForProfileSet; mCardinalEndPoint = m.mCardinalEndPoint; }