Inheritance: GeometryGym.Ifc.IfcRelDefines
示例#1
0
		internal IfcTypeObject(DatabaseIfc m) : base(m) { IfcRelDefinesByType rdt = new IfcRelDefinesByType(this) { Name = Name }; }
示例#2
0
 protected IfcObject(IfcObject basis) : base(basis)
 {
     mObjectType = basis.mObjectType; mIsDeclaredBy = basis.mIsDeclaredBy; mIsTypedBy = basis.mIsTypedBy; mIsDefinedBy = basis.mIsDefinedBy;
 }
示例#3
0
		internal static void parseFields(IfcRelDefinesByType t, List<string> arrFields, ref int ipos) { IfcRelDefines.parseFields(t, arrFields, ref ipos); t.mRelatedObjects = ParserSTEP.SplitListLinks(arrFields[ipos++]); t.mRelatingType = ParserSTEP.ParseLink(arrFields[ipos++]); }
示例#4
0
		internal static IfcRelDefinesByType Parse(string strDef) { IfcRelDefinesByType t = new IfcRelDefinesByType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
示例#5
0
		internal IfcRelDefinesByType(IfcRelDefinesByType d) : base(d) { mRelatedObjects = new List<int>(d.mRelatedObjects.ToArray()); mRelatingType = d.mRelatingType; }