GeometryGym.Ifc.IfcLightSourceSpot.Parse C# (CSharp) Méthode

Parse() static private méthode

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

Same methods

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

Usage Example

 //internal IfcLightSourceSpot(IfcLightSourceSpot el) : base(el) { mOrientation = el.mOrientation; mConcentrationExponent = el.mConcentrationExponent; mSpreadAngle = el.mSpreadAngle; mBeamWidthAngle = el.mBeamWidthAngle; }
 internal static IfcLightSourceSpot Parse(string str)
 {
     IfcLightSourceSpot l = new IfcLightSourceSpot(); int pos = 0; l.Parse(str, ref pos, str.Length); return(l);
 }
All Usage Examples Of GeometryGym.Ifc.IfcLightSourceSpot::Parse