Inheritance: IfcAnnotationCurveOccurrence
Example #1
0
		internal new static IfcDimensionCurve Parse(string strDef) { IfcDimensionCurve d = new IfcDimensionCurve(); int ipos = 0; parseFields(d, ParserSTEP.SplitLineFields(strDef), ref ipos); return d; }
Example #2
0
		internal IfcDimensionCurve(IfcDimensionCurve p) : base(p) { mAnnotatedBySymbols = new List<int>(p.mAnnotatedBySymbols.ToArray()); }
Example #3
0
		internal static void parseFields(IfcDimensionCurve fs, List<string> arrFields, ref int ipos) { IfcAnnotationCurveOccurrence.parseFields(fs, arrFields, ref ipos); fs.mAnnotatedBySymbols = ParserSTEP.SplitListLinks(arrFields[ipos++]); }
Example #4
0
		//internal IfcDimensionCurve(DatabaseIfc db, IfcDimensionCurve p) : base(p) { mAnnotatedBySymbols = new List<int>(p.mAnnotatedBySymbols.ToArray()); }
		internal new static IfcDimensionCurve Parse(string str) { IfcDimensionCurve d = new IfcDimensionCurve(); int pos = 0; d.Parse(str, ref pos, str.Length); return d; }