using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Shaker.Models
{
public class SweepControlItemModel : BaseModel
{
///
/// 频率
///
public float Frequency = 1;
///
/// 更新间隔
///
public uint UpDateInvert = 1;
///
/// 指数系数
///
public float ExponentialCoefficients = 1;
///
/// 位移调整系数
///
public float AdjustMagnitude = 0.5f;
///
/// 压缩速率
///
public float CompressionRate = 1400;
public override object Clone()
{
return this.CloneBase();
}
}
}