GeometryGym.Ifc.IfcAnnotationSurface.Parse C# (CSharp) Méthode

Parse() static private méthode

static private Parse ( string str ) : IfcAnnotationSurface
str string
Résultat IfcAnnotationSurface
		internal static IfcAnnotationSurface Parse(string str)
		{
			IfcAnnotationSurface a = new IfcAnnotationSurface();
			int pos = 0, len = str.Length;
			a.mItem = ParserSTEP.StripLink(str, ref pos, len);
			a.mTextureCoordinates = ParserSTEP.StripLink(str, ref pos, len);
			return a;
		}
		protected override string BuildStringSTEP() { return base.BuildStringSTEP() + "," + ParserSTEP.LinkToString(mItem) + "," + ParserSTEP.LinkToString(mTextureCoordinates); }