상속: IfcExternalSpatialStructureElement, IfcSpaceBoundarySelect
예제 #1
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcExternalSpatialElement Parse(string strDef) { IfcExternalSpatialElement s = new IfcExternalSpatialElement(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
예제 #2
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcExternalSpatialElement(IfcExternalSpatialElement p) : base(p) { mPredefinedType = p.mPredefinedType; }
예제 #3
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcExternalSpatialElement gp, List<string> arrFields, ref int ipos)
		{
			IfcSpatialStructureElement.parseFields(gp, arrFields, ref ipos);
			string s = arrFields[ipos++];
			if (s[0] == '.')
				gp.mPredefinedType = (IfcExternalSpatialElementTypeEnum)Enum.Parse(typeof(IfcExternalSpatialElementTypeEnum), s.Replace(".", ""));
		}
예제 #4
0
		internal IfcExternalSpatialElement(DatabaseIfc db, IfcExternalSpatialElement e, bool downStream) : base(db, e,downStream) { mPredefinedType = e.mPredefinedType; }