Beispiel #1
0
 //internal IfcLightSourceDirectional(IfcLightSourceDirectional el) : base((IfcLightSource)el) { mOrientation = el.mOrientation; }
 internal static IfcLightSourceDirectional Parse(string str)
 {
     IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int pos = 0; l.Parse(str, ref pos, str.Length); return(l);
 }
Beispiel #2
0
 internal static IfcLightSourceDirectional Parse(string strDef)
 {
     IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return(l);
 }
Beispiel #3
0
 internal static void parseFields(IfcLightSourceDirectional l, List <string> arrFields, ref int ipos)
 {
     IfcLightSource.parseFields(l, arrFields, ref ipos); l.mOrientation = ParserSTEP.ParseLink(arrFields[ipos++]);
 }
Beispiel #4
0
 internal IfcLightSourceDirectional(IfcLightSourceDirectional el) : base((IfcLightSource)el)
 {
     mOrientation = el.mOrientation;
 }
Beispiel #5
0
 //internal IfcLightSourceDirectional(IfcLightSourceDirectional el) : base((IfcLightSource)el) { mOrientation = el.mOrientation; }
 internal static IfcLightSourceDirectional Parse(string str)
 {
     IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int pos = 0; l.Parse(str, ref pos, str.Length); return l;
 }
Beispiel #6
0
		internal static void parseFields(IfcLightSourceDirectional l, List<string> arrFields, ref int ipos) { IfcLightSource.parseFields(l, arrFields, ref ipos); l.mOrientation = ParserSTEP.ParseLink(arrFields[ipos++]); }
Beispiel #7
0
		internal static IfcLightSourceDirectional Parse(string strDef) { IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
Beispiel #8
0
		internal IfcLightSourceDirectional(IfcLightSourceDirectional el) : base((IfcLightSource)el) { mOrientation = el.mOrientation; }