16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 01:19:19 +02:00

reformat: remove redundant qualifiers

This commit is contained in:
jerrrrycho
2026-07-04 05:34:23 +02:00
parent 20e7a99516
commit cf9fb07800
98 changed files with 2290 additions and 2290 deletions

View File

@@ -58,7 +58,7 @@ struct world_vertex {
void
set_half( world_vertex const &Vertex1, world_vertex const &Vertex2 ) {
*this =
world_vertex::lerp(
lerp(
Vertex1,
Vertex2,
0.5 ); }
@@ -66,7 +66,7 @@ struct world_vertex {
void
set_from_x( world_vertex const &Vertex1, world_vertex const &Vertex2, double const X ) {
*this =
world_vertex::lerp(
lerp(
Vertex1,
Vertex2,
( X - Vertex1.position.x ) / ( Vertex2.position.x - Vertex1.position.x ) ); }
@@ -74,7 +74,7 @@ struct world_vertex {
void
set_from_z( world_vertex const &Vertex1, world_vertex const &Vertex2, double const Z ) {
*this =
world_vertex::lerp(
lerp(
Vertex1,
Vertex2,
( Z - Vertex1.position.z ) / ( Vertex2.position.z - Vertex1.position.z ) ); }