mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-16 13:07:39 +03:00
# Description The documentation for it can be found here: https://numerics.mathdotnet.com/api/MathNet.Numerics/index.htm This adds an entire massive library of academic/scientific/engineering math functions. I basically need this going forwards to start comprehensively fixing this game's terrible math. # Changelog Not player facing, but it deserves to be here: 🆑 - add: (For Developers): Added the MathNet.Numerics library. It contains a great number of scientific and engineering math related functions. For more information, its documentation can be found here, https://numerics.mathdotnet.com/api/MathNet.Numerics/index.htm (cherry picked from commit 09d438d1035a276c01b708552f35782d4fa54941)
21 lines
988 B
XML
21 lines
988 B
XML
<Project>
|
|
<Import Project="RobustToolbox/Directory.Packages.props" />
|
|
<ItemGroup>
|
|
<!--
|
|
Remove EF Core packages from Robust. They're only used by Robust.Benchmarks anyways.
|
|
-->
|
|
<PackageVersion Remove="Npgsql.EntityFrameworkCore.PostgreSQL" />
|
|
<PackageVersion Remove="Microsoft.EntityFrameworkCore.Design" />
|
|
|
|
<PackageVersion Include="CsvHelper" Version="30.0.1" />
|
|
<PackageVersion Include="ImGui.NET" Version="1.87.3" />
|
|
<PackageVersion Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.0" />
|
|
<PackageVersion Include="Microsoft.EntityFrameworkCore.Sqlite.Core" Version="8.0.0" />
|
|
<PackageVersion Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.0" />
|
|
<PackageVersion Include="OpenTK" Version="4.7.2" />
|
|
<PackageVersion Include="Veldrid" Version="4.8.0" />
|
|
<PackageVersion Include="Veldrid.SPIRV" Version="1.0.15" />
|
|
<PackageVersion Include="MathNet.Numerics" Version="5.0.0" />
|
|
</ItemGroup>
|
|
</Project>
|