Parse() static private méthode

static private Parse ( string str ) : IfcLightSourceSpot
str string
Résultat IfcLightSourceSpot
 //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);
 }
Exemple #2
0
 //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;
 }