상속: IfcGeometricRepresentationItem
예제 #1
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		protected static void parseFields(IfcPlacement p, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(p, arrFields, ref ipos); p.mLocation = ParserSTEP.ParseLink(arrFields[ipos++]); }
예제 #2
0
 internal IfcGradientCurve(DatabaseIfc db, IfcGradientCurve c, DuplicateOptions options) : base(db, c, options)
 {
     mBaseCurve = db.Factory.Duplicate(c.mBaseCurve) as IfcBoundedCurve;
     mEndPoint  = db.Factory.Duplicate(c.mEndPoint) as IfcPlacement;
 }
예제 #3
0
파일: IFC P.cs 프로젝트: jenca-cloud/ggIFC
		protected IfcPlacement(IfcPlacement o) : base(o) { mLocation = o.mLocation; }