コード例 #1
0
ファイル: IFC W.cs プロジェクト: jddaigle/GeometryGymIFC
 internal static void parseFields(IfcWindowType s, List <string> arrFields, ref int ipos)
 {
     IfcBuildingElementType.parseFields(s, arrFields, ref ipos);
     s.mPredefinedType              = (IfcWindowTypeEnum)Enum.Parse(typeof(IfcWindowTypeEnum), arrFields[ipos++].Replace(".", ""));
     s.mPartitioningType            = (IfcWindowTypePartitioningEnum)Enum.Parse(typeof(IfcWindowTypePartitioningEnum), arrFields[ipos++].Replace(".", ""));
     s.mParameterTakesPrecedence    = ParserSTEP.ParseBool(arrFields[ipos++]);
     s.mUserDefinedPartitioningType = arrFields[ipos++];
 }
コード例 #2
0
ファイル: IFC W.cs プロジェクト: jddaigle/GeometryGymIFC
 internal static void parseFields(IfcWallType t, List <string> arrFields, ref int ipos)
 {
     IfcBuildingElementType.parseFields(t, arrFields, ref ipos);
     try
     {
         string str = arrFields[ipos++].Replace(".", "");
         if (string.Compare(str, "STANDARD", true) != 0)
         {
             t.mPredefinedType = (IfcWallTypeEnum)Enum.Parse(typeof(IfcWallTypeEnum), str);
         }
     }
     catch (Exception) { }
 }
コード例 #3
0
 protected IfcBuildingElementType(DatabaseIfc db, IfcBuildingElementType t, DuplicateOptions options) : base(db, t, options)
 {
 }
コード例 #4
0
ファイル: IFC B.cs プロジェクト: pietlambert/GeometryGymIFC
 protected IfcBuildingElementType(DatabaseIfc db, IfcBuildingElementType t, IfcOwnerHistory ownerHistory, bool downStream) : base(db, t, ownerHistory, downStream)
 {
 }
コード例 #5
0
ファイル: IFC B.cs プロジェクト: jenca-cloud/ggIFC
		protected static void parseFields(IfcBuildingElementType t, List<string> arrFields, ref int ipos) { IfcElementType.parseFields(t, arrFields, ref ipos); }
コード例 #6
0
ファイル: IFC B.cs プロジェクト: jenca-cloud/ggIFC
		protected IfcBuildingElementType(IfcBuildingElementType t) : base(t) { }
コード例 #7
0
ファイル: IFC B.cs プロジェクト: jmirtsch/GeometryGymIFC
 protected IfcBuildingElementType(DatabaseIfc db, IfcBuildingElementType t)
     : base(db,t)
 {
 }