Inheritance: IfcManifoldSolidBrep
コード例 #1
0
ファイル: ifc A.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcAdvancedBrep b, List<string> arrFields, ref int ipos) { IfcManifoldSolidBrep.parseFields(b, arrFields, ref ipos); }
コード例 #2
0
ファイル: ifc A.cs プロジェクト: jenca-cloud/ggIFC
		internal static IfcAdvancedBrep Parse(string strDef) { IfcAdvancedBrep b = new IfcAdvancedBrep(); int ipos = 0; parseFields(b, ParserSTEP.SplitLineFields(strDef), ref ipos); return b; }
コード例 #3
0
ファイル: ifc A.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcAdvancedBrep(IfcAdvancedBrep p) : base(p) { }
コード例 #4
0
ファイル: IFC A.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal static IfcAdvancedBrep Parse(string str) { IfcAdvancedBrep b = new IfcAdvancedBrep(); int pos = 0; b.Parse(str,ref pos, str.Length); return b; }
コード例 #5
0
ファイル: IFC A.cs プロジェクト: jmirtsch/GeometryGymIFC
		internal IfcAdvancedBrep(DatabaseIfc db, IfcAdvancedBrep b) : base(db,b) { }
コード例 #6
0
ファイル: IFC S.cs プロジェクト: jenca-cloud/ggIFC
		public IfcShapeRepresentation(IfcAdvancedBrep ab) : base(ab, "Body", "AdvancedBrep") { }