GeometryGym.Ifc.IfcLightSourceDirectional.Parse C# (CSharp) Method

Parse() static private method

static private Parse ( string str ) : IfcLightSourceDirectional
str string
return IfcLightSourceDirectional
        internal static IfcLightSourceDirectional Parse(string str)
        {
            IfcLightSourceDirectional l = new IfcLightSourceDirectional(); int pos = 0; l.Parse(str, ref pos, str.Length); return l;
        }

Same methods

IfcLightSourceDirectional::Parse ( string str, int &pos, int len ) : void

Usage Example

コード例 #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);
 }
All Usage Examples Of GeometryGym.Ifc.IfcLightSourceDirectional::Parse