Exemplo n.º 1
0
 public IfcLightDistributionData(DatabaseIfc db, double mainPlaneAngle, IEnumerable <double> secondaryPlaneAngle, IEnumerable <double> luminousIntensity)
     : base(db)
 {
     MainPlaneAngle = mainPlaneAngle;
     SecondaryPlaneAngle.AddRange(secondaryPlaneAngle);
     LuminousIntensity.AddRange(luminousIntensity);
 }
Exemplo n.º 2
0
 internal override void parse(string str, ref int pos, ReleaseVersion release, int len, ConcurrentDictionary <int, BaseClassIfc> dictionary)
 {
     MainPlaneAngle = ParserSTEP.StripDouble(str, ref pos, len);
     SecondaryPlaneAngle.AddRange(ParserSTEP.StripListDouble(str, ref pos, len));
     LuminousIntensity.AddRange(ParserSTEP.StripListDouble(str, ref pos, len));
 }