コード例 #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);
 }
コード例 #2
0
 internal static IfcLightSourceDirectional Parse(string strDef)
 {
     IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return(l);
 }
コード例 #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++]);
 }
コード例 #4
0
 internal IfcLightSourceDirectional(IfcLightSourceDirectional el) : base((IfcLightSource)el)
 {
     mOrientation = el.mOrientation;
 }
コード例 #5
0
ファイル: IFC L.cs プロジェクト: jmirtsch/GeometryGymIFC
 //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;
 }
コード例 #6
0
ファイル: IFC L.cs プロジェクト: jenca-cloud/ggIFC
		internal static void parseFields(IfcLightSourceDirectional l, List<string> arrFields, ref int ipos) { IfcLightSource.parseFields(l, arrFields, ref ipos); l.mOrientation = ParserSTEP.ParseLink(arrFields[ipos++]); }
コード例 #7
0
ファイル: IFC L.cs プロジェクト: jenca-cloud/ggIFC
		internal static IfcLightSourceDirectional Parse(string strDef) { IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int ipos = 0; parseFields(l, ParserSTEP.SplitLineFields(strDef), ref ipos); return l; }
コード例 #8
0
ファイル: IFC L.cs プロジェクト: jenca-cloud/ggIFC
		internal IfcLightSourceDirectional(IfcLightSourceDirectional el) : base((IfcLightSource)el) { mOrientation = el.mOrientation; }