예제 #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; }