Inheritance: IfcGeometricRepresentationItem
Esempio n. 1
0
		internal static IfcShellBasedSurfaceModel Parse(string strDef) { IfcShellBasedSurfaceModel s = new IfcShellBasedSurfaceModel(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
Esempio n. 2
0
		internal IfcShellBasedSurfaceModel(IfcShellBasedSurfaceModel m) : base(m) { mSbsmBoundary = new List<int>(m.mSbsmBoundary.ToArray()); }
Esempio n. 3
0
		internal static void parseFields(IfcShellBasedSurfaceModel s, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(s, arrFields, ref ipos); s.mSbsmBoundary = ParserSTEP.SplitListLinks(arrFields[ipos++]); }
Esempio n. 4
0
		public IfcShapeRepresentation(IfcShellBasedSurfaceModel sm) : base(sm, "Body", "SurfaceModel") { }