Большое переименование: замена префикса F на более корректный FP (Floating Point)

This commit is contained in:
Andrey Pokidov 2024-11-20 12:24:12 +07:00
parent c66edd3432
commit ebb0a73555
31 changed files with 483 additions and 483 deletions

View file

@ -8,12 +8,12 @@ using BGC;
namespace BGCTest
{
[TestClass]
public class F32Vector2Test
public class FP32Vector2Test
{
[TestMethod]
public void TestInitialization()
{
F32Vector2 vector = new F32Vector2(1.0f, 2.0f);
FP32Vector2 vector = new FP32Vector2(1.0f, 2.0f);
}
}
}