상속: GeometryGym.Ifc.IfcPresentationItem, IfcSurfaceStyleElementSelect
예제 #1
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcSurfaceStyleShading s, List<string> arrFields, ref int ipos) { s.mSurfaceColour = ParserSTEP.ParseLink(arrFields[ipos++]); }
예제 #2
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcSurfaceStyleShading Parse(string strDef) { IfcSurfaceStyleShading s = new IfcSurfaceStyleShading(); int ipos = 0; parseFields(s, ParserSTEP.SplitLineFields(strDef), ref ipos); return s; }
예제 #3
0
파일: IFC S.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcSurfaceStyleShading(IfcSurfaceStyleShading i) : base() { mSurfaceColour = i.mSurfaceColour; }