コード例 #1
0
ファイル: IFC R.cs プロジェクト: jenca-cloud/ggIFC
		internal static IfcRelDefinesByProperties Parse(string str)
		{
			IfcRelDefinesByProperties d = new IfcRelDefinesByProperties();
			int pos = 0;
			d.parseString(str, ref pos);
			d.mRelatedObjects = ParserSTEP.StripListLink(str, ref pos);// splitListSTPLinks(arrFields[ipos++]);
			d.mRelatingPropertyDefinition = ParserSTEP.StripLink(str, ref pos);//.parseSTPLink(arrFields[ipos++]);
			return d;
		}