Le fichier graphics/graphics.c de ce commit est identique à celui du ccommit 168fa977a2 de la branche dev/arrows_add_remove

This commit is contained in:
Jean Sirmai 2023-09-28 10:54:35 +02:00
parent 1cd59ca012
commit 2a66537af4
Signed by: jean
GPG Key ID: FB3115C340E057E3
1 changed files with 5 additions and 5 deletions

View File

@ -91,7 +91,7 @@ void arrows_write_terminations (long x, long y, long z)
graphics_write_color(0.0f, 1.0f, 0.0f);
graphics_write_color(1.0f, 0.0f, 1.0f);
// Z - Z axis arrows tips near the faces centers NORTH - SOUTH
// Z - Z (NORTH - SOUTH) axis - arrows tips
graphics_write_vertex (vx, vy, vz + (1 / max) - arrow_tip_padding);
graphics_write_vertex (vx, vy, vz - (1 / max) + arrow_tip_padding);
graphics_write_color(0.0f, 0.0f, 1.0f);
@ -100,7 +100,7 @@ void arrows_write_terminations (long x, long y, long z)
}
/*
* Writes edges for arrows oriented toward east or west into lines buffer
* Writes lines for arrow oriented towards east or west into lines buffer
*
* @param offset,
* weight,
@ -117,7 +117,7 @@ void write_arrow_lines_east_west (long offset, int weight, int site)
}
/*
* Writes edges for arrows oriented toward zenith or nadir into lines buffer
* Writes lines for arrow oriented towards zenith or nadir into lines buffer
*
* @param offset,
* weight,
@ -134,7 +134,7 @@ void write_arrow_lines_zenith_nadir (long offset, int weight, int site)
}
/*
* Writes edges for arrows oriented toward south or north into lines buffer
* Writes lines for arrow oriented towards south or north into lines buffer
*
* @param offset,
* weight,
@ -151,7 +151,7 @@ void write_arrow_lines_south_north (long offset, int weight, int site)
}
/*
* Writes lines drawing arrows bases into lines buffer
* Writes lines for arrow basis into lines buffer
*
* @param offset
*