Переход на парадигму Destination first в порядке параметров функий
This commit is contained in:
parent
f7e41645fe
commit
03627f4401
41 changed files with 1570 additions and 1978 deletions
|
|
@ -150,105 +150,9 @@
|
|||
<ItemGroup>
|
||||
<ClCompile Include="helpers.c" />
|
||||
<ClCompile Include="main.c" />
|
||||
<ClCompile Include="tests\complex.c" />
|
||||
<ClCompile Include="tests\complex\complex_copy.c" />
|
||||
<ClCompile Include="tests\complex\complex_is_unit.c" />
|
||||
<ClCompile Include="tests\complex\complex_is_zero.c" />
|
||||
<ClCompile Include="tests\complex\complex_modulus.c" />
|
||||
<ClCompile Include="tests\complex\complex_reset.c" />
|
||||
<ClCompile Include="tests\complex\complex_set_values.c" />
|
||||
<ClCompile Include="tests\complex\complex_swap.c" />
|
||||
<ClCompile Include="tests\complex\complex_arithmetics.c" />
|
||||
<ClCompile Include="tests\quaternion.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_copy.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_is_unit.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_is_zero.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_modulus.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_reset.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_set_to_identity.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_set_values.c" />
|
||||
<ClCompile Include="tests\quaternion\quaternion_swap.c" />
|
||||
<ClCompile Include="tests\utilities.c" />
|
||||
<ClCompile Include="tests\utilities\are_close.c" />
|
||||
<ClCompile Include="tests\utilities\is_unit.c" />
|
||||
<ClCompile Include="tests\utilities\is_zero.c" />
|
||||
<ClCompile Include="tests\vector2.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_arithmetics.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_is_unit.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_is_zero.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_copy.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_modulus.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_reset.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_set_values.c" />
|
||||
<ClCompile Include="tests\vector2\vector2_swap.c" />
|
||||
<ClCompile Include="tests\vector3.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_arithmetics.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_is_unit.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_is_zero.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_copy.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_modulus.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_swap.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_reset.c" />
|
||||
<ClCompile Include="tests\vector3\vector3_set_values.c" />
|
||||
<ClCompile Include="tests\versor.c" />
|
||||
<ClCompile Include="tests\versor\versor_copy.c" />
|
||||
<ClCompile Include="tests\versor\versor_is_identity.c" />
|
||||
<ClCompile Include="tests\versor\versor_swap.c" />
|
||||
<ClCompile Include="tests\versor\versor_combine.c" />
|
||||
<ClCompile Include="tests\versor\versor_reset.c" />
|
||||
<ClCompile Include="tests\versor\versor_set_values.c" />
|
||||
<ClCompile Include="tests\versor\versor_are_close.c" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="helpers.h" />
|
||||
<ClInclude Include="tests\complex.h" />
|
||||
<ClInclude Include="tests\complex\complex_copy.h" />
|
||||
<ClInclude Include="tests\complex\complex_is_unit.h" />
|
||||
<ClInclude Include="tests\complex\complex_is_zero.h" />
|
||||
<ClInclude Include="tests\complex\complex_modulus.h" />
|
||||
<ClInclude Include="tests\complex\complex_reset.h" />
|
||||
<ClInclude Include="tests\complex\complex_set_values.h" />
|
||||
<ClInclude Include="tests\complex\complex_swap.h" />
|
||||
<ClInclude Include="tests\complex\complex_arithmetics.h" />
|
||||
<ClInclude Include="tests\quaternion.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_copy.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_is_unit.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_is_zero.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_modulus.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_reset.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_set_to_identity.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_set_values.h" />
|
||||
<ClInclude Include="tests\quaternion\quaternion_swap.h" />
|
||||
<ClInclude Include="tests\utilities.h" />
|
||||
<ClInclude Include="tests\utilities\are_close.h" />
|
||||
<ClInclude Include="tests\utilities\is_unit.h" />
|
||||
<ClInclude Include="tests\utilities\is_zero.h" />
|
||||
<ClInclude Include="tests\vector2.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_arithmetics.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_is_unit.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_is_zero.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_copy.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_modulus.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_reset.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_set_values.h" />
|
||||
<ClInclude Include="tests\vector2\vector2_swap.h" />
|
||||
<ClInclude Include="tests\vector3.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_arithmetics.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_is_unit.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_is_zero.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_copy.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_modulus.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_swap.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_reset.h" />
|
||||
<ClInclude Include="tests\vector3\vector3_set_values.h" />
|
||||
<ClInclude Include="tests\versor.h" />
|
||||
<ClInclude Include="tests\versor\versor_copy.h" />
|
||||
<ClInclude Include="tests\versor\versor_is_identity.h" />
|
||||
<ClInclude Include="tests\versor\versor_swap.h" />
|
||||
<ClInclude Include="tests\versor\versor_combine.h" />
|
||||
<ClInclude Include="tests\versor\versor_reset.h" />
|
||||
<ClInclude Include="tests\versor\versor_set_values.h" />
|
||||
<ClInclude Include="tests\versor\versor_are_close.h" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue