예제 #1
0
 public Pset_SpaceOccupancyRequirements(IfcSpatialZoneType type)
     : base(type.mDatabase, "Pset_SpaceOccupancyRequirements")
 {
     Description = type.Name; type.AddPropertySet(this);
 }
예제 #2
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcSpatialZoneType t, List<string> arrFields, ref int ipos) { IfcSpatialElementType.parseFields(t, arrFields, ref ipos); t.mPredefinedType = (IfcSpatialZoneTypeEnum)Enum.Parse(typeof(IfcSpatialZoneTypeEnum), arrFields[ipos++].Replace(".", "")); }
예제 #3
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal new static IfcSpatialZoneType Parse(string strDef) { IfcSpatialZoneType t = new IfcSpatialZoneType(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos); return t; }
예제 #4
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcSpatialZoneType(IfcSpatialZoneType t) : base(t) { mPredefinedType = t.mPredefinedType; }