Esempio n. 1
0
 internal static IfcOneDirectionRepeatFactor Parse(string str)
 {
     IfcOneDirectionRepeatFactor f = new IfcOneDirectionRepeatFactor(); int pos = 0; f.Parse(str, ref pos, str.Length); return(f);
 }
Esempio n. 2
0
 internal static IfcOneDirectionRepeatFactor Parse(string strDef)
 {
     IfcOneDirectionRepeatFactor f = new IfcOneDirectionRepeatFactor(); int ipos = 0; parseFields(f, ParserSTEP.SplitLineFields(strDef), ref ipos); return(f);
 }
Esempio n. 3
0
 internal IfcOneDirectionRepeatFactor(DatabaseIfc db, IfcOneDirectionRepeatFactor f) : base(db, f)
 {
     RepeatFactor = db.Factory.Duplicate(f.RepeatFactor) as IfcVector;
 }
Esempio n. 4
0
 internal static void parseFields(IfcOneDirectionRepeatFactor f, List <string> arrFields, ref int ipos)
 {
     IfcGeometricRepresentationItem.parseFields(f, arrFields, ref ipos); f.mRepeatFactor = ParserSTEP.ParseLink(arrFields[ipos++]);
 }
Esempio n. 5
0
 internal IfcOneDirectionRepeatFactor(IfcOneDirectionRepeatFactor p) : base((IfcGeometricRepresentationItem)p)
 {
     mRepeatFactor = p.mRepeatFactor;
 }
Esempio n. 6
0
		internal static IfcOneDirectionRepeatFactor Parse(string strDef) { IfcOneDirectionRepeatFactor f = new IfcOneDirectionRepeatFactor(); int ipos = 0; parseFields(f, ParserSTEP.SplitLineFields(strDef), ref ipos); return f; }
Esempio n. 7
0
		internal static void parseFields(IfcOneDirectionRepeatFactor f, List<string> arrFields, ref int ipos) { IfcGeometricRepresentationItem.parseFields(f, arrFields, ref ipos); f.mRepeatFactor = ParserSTEP.ParseLink(arrFields[ipos++]); }
Esempio n. 8
0
		internal IfcOneDirectionRepeatFactor(IfcOneDirectionRepeatFactor p) : base((IfcGeometricRepresentationItem)p) { mRepeatFactor = p.mRepeatFactor; }