This commit is contained in:
2025-05-26 04:47:47 +03:00
parent 2b595ba585
commit 89f4a186ff
6 changed files with 93 additions and 29 deletions

View File

@ -308,7 +308,8 @@ namespace DroneSimulator
Area.Wind.Speed.To = (float)numericUpDown_Area_Wind_Speed_To.Value;
Area.Wind.Direction = (float)numericUpDown_Area_Wind_Direction.Value;
Area.Wind.Density = (float)numericUpDown_Area_Wind_Density.Value;
Area.Wind.Resist = (float)numericUpDown_Area_Wind_Resist.Value;
Area.Wind.PosResist = ((float)numericUpDown_Area_Wind_PosResist.Value)/1000.0f;
Area.Wind.RotResist = ((float)numericUpDown_Area_Wind_RotResist.Value)/1000.0f;
}
}
}