internal static IfcFacetedBrep Parse(string str) { IfcFacetedBrep b = new IfcFacetedBrep(); int pos = 0; b.Parse(str,ref pos, str.Length); return b; }
internal IfcFacetedBrep(DatabaseIfc db, IfcFacetedBrep b) : base(db,b) { }
internal static void parseFields(IfcFacetedBrep b, List<string> arrFields, ref int ipos) { IfcManifoldSolidBrep.parseFields(b, arrFields, ref ipos); }
internal static IfcFacetedBrep Parse(string strDef) { IfcFacetedBrep b = new IfcFacetedBrep(); int ipos = 0; parseFields(b, ParserSTEP.SplitLineFields(strDef), ref ipos); return b; }
internal IfcFacetedBrep(IfcFacetedBrep p) : base(p) { }
//should remove above as in 3d?? hierarchy test public IfcShapeRepresentation(IfcFacetedBrep fb) : base(fb, "Body", "Brep") { }