Exemple #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public StationModelShape()
 {
     ShapeType     = ShapeTypes.StationModel;
     weatherSymbol = new WeatherSymbol();
     windBarb      = new WindBarb();
     cloudCoverage = new CloudCoverage();
 }
Exemple #2
0
        /// <summary>
        /// Clone WeatherSymbol
        /// </summary>
        /// <returns>WeatherSymbol</returns>
        public override object Clone()
        {
            WeatherSymbol aWS = new WeatherSymbol();

            aWS.size    = size;
            aWS.weather = weather;
            aWS.Point   = Point;
            aWS.Value   = Value;

            return(aWS);
        }