Inheritance: IfcHalfSpaceSolid
示例#1
0
 internal IfcBoxedHalfSpace(DatabaseIfc db, IfcBoxedHalfSpace s) : base(db, s)
 {
     Enclosure = db.Factory.Duplicate(s.Enclosure) as IfcBoundingBox;
 }
示例#2
0
		internal new static IfcBoxedHalfSpace Parse(string strDef) { IfcBoxedHalfSpace s = new IfcBoxedHalfSpace(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
示例#3
0
		internal static void parseFields(IfcBoxedHalfSpace s, List<string> arrFields, ref int ipos) { IfcHalfSpaceSolid.parseFields(s, arrFields, ref ipos); s.mEnclosure = ParserSTEP.ParseLink(arrFields[ipos++]); }
示例#4
0
		internal IfcBoxedHalfSpace(IfcBoxedHalfSpace pl) : base(pl) { mEnclosure = pl.mEnclosure; }
示例#5
0
 internal static new IfcBoxedHalfSpace Parse(string str)
 {
     IfcBoxedHalfSpace s = new IfcBoxedHalfSpace(); int pos = 0; s.Parse(str, ref pos, str.Length); return s;
 }
示例#6
0
 internal IfcBoxedHalfSpace(DatabaseIfc db, IfcBoxedHalfSpace s)
     : base(db,s)
 {
     Enclosure = db.Factory.Duplicate(s.Enclosure) as IfcBoundingBox;
 }