상속: GeometryGym.Ifc.IfcSurfaceTexture
예제 #1
0
		internal IfcBlobTexture(DatabaseIfc db, IfcBlobTexture t, DuplicateOptions options)
			: base(db, t, options) { mRasterFormat = t.mRasterFormat;  mRasterCode = t.mRasterCode; }
예제 #2
0
파일: IFC B.cs 프로젝트: jenca-cloud/ggIFC
		internal static IfcBlobTexture Parse(string strDef, Schema schema) { IfcBlobTexture t = new IfcBlobTexture(); int ipos = 0; parseFields(t, ParserSTEP.SplitLineFields(strDef), ref ipos,schema); return t; }
예제 #3
0
파일: IFC B.cs 프로젝트: jenca-cloud/ggIFC
		internal static void parseFields(IfcBlobTexture t, List<string> arrFields, ref int ipos, Schema schema) { IfcSurfaceTexture.parseFields(t, arrFields, ref ipos,schema); t.mRasterFormat = arrFields[ipos++].Replace("'", ""); t.mRasterCode = ParserSTEP.ParseBool(arrFields[ipos++]); }
예제 #4
0
파일: IFC B.cs 프로젝트: jenca-cloud/ggIFC
		internal IfcBlobTexture(IfcBlobTexture i) : base(i) { mRasterFormat = i.mRasterFormat; mRasterCode = i.mRasterCode; }