상속: GeometryGym.Ifc.IfcSurface
예제 #1
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		protected IfcElementarySurface(IfcElementarySurface o) : base(o) { mPosition = o.mPosition; }
예제 #2
0
파일: IFC E.cs 프로젝트: jenca-cloud/ggIFC
		protected static void parseFields(IfcElementarySurface s, List<string> arrFields, ref int ipos) { IfcSurface.parseFields(s, arrFields, ref ipos); s.mPosition = ParserSTEP.ParseLink(arrFields[ipos++]); }
예제 #3
0
		protected IfcElementarySurface(DatabaseIfc db, IfcElementarySurface s) : base(db,s) { Position = db.Factory.Duplicate(s.Position) as IfcAxis2Placement3D; }