Inheritance: IfcProductRepresentation
Beispiel #1
0
		internal new static IfcMaterialDefinitionRepresentation Parse(string strDef) { IfcMaterialDefinitionRepresentation m = new IfcMaterialDefinitionRepresentation(); int ipos = 0; parseFields(m, ParserSTEP.SplitLineFields(strDef), ref ipos); return m; }
Beispiel #2
0
		internal static void parseFields(IfcMaterialDefinitionRepresentation m, List<string> arrFields, ref int ipos) { IfcProductRepresentation.parseFields(m, arrFields, ref ipos); m.mRepresentedMaterial = ParserSTEP.ParseLink(arrFields[ipos++]); }
Beispiel #3
0
		internal IfcMaterialDefinitionRepresentation(IfcMaterialDefinitionRepresentation i) : base(i) { mRepresentedMaterial = i.mRepresentedMaterial; }