Inheritance: GeometryGym.Ifc.IfcSurfaceTexture
Exemplo n.º 1
0
		internal IfcBlobTexture(DatabaseIfc db, IfcBlobTexture t, DuplicateOptions options)
			: base(db, t, options) { mRasterFormat = t.mRasterFormat;  mRasterCode = t.mRasterCode; }
Exemplo n.º 2
0
		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; }
Exemplo n.º 3
0
		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++]); }
Exemplo n.º 4
0
		internal IfcBlobTexture(IfcBlobTexture i) : base(i) { mRasterFormat = i.mRasterFormat; mRasterCode = i.mRasterCode; }