mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-23 21:07:17 +00:00
rogueviz::flocking:: transparent colors
This commit is contained in:
parent
8b901b1432
commit
875743039f
@ -165,7 +165,7 @@ namespace flocking {
|
|||||||
// and maps the straight line on which m1 and m2 are to itself
|
// and maps the straight line on which m1 and m2 are to itself
|
||||||
align += gpushxto0(ac) * at2 * hpxyz(vel2, 0, 0);
|
align += gpushxto0(ac) * at2 * hpxyz(vel2, 0, 0);
|
||||||
align_count++;
|
align_count++;
|
||||||
col |= 0xFF00FF;
|
col |= 0xFF0040;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(di < coh_range) {
|
if(di < coh_range) {
|
||||||
@ -174,13 +174,13 @@ namespace flocking {
|
|||||||
// average of azimuthal equidistant projections)
|
// average of azimuthal equidistant projections)
|
||||||
coh += spin(alpha) * hpxyz(di, 0, 0);
|
coh += spin(alpha) * hpxyz(di, 0, 0);
|
||||||
coh_count++;
|
coh_count++;
|
||||||
col |= 0xFFFF;
|
col |= 0xFF40;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(di < sep_range) {
|
if(di < sep_range) {
|
||||||
sep -= spin(alpha) * hpxyz(1 / di, 0, 0);
|
sep -= spin(alpha) * hpxyz(1 / di, 0, 0);
|
||||||
sep_count++;
|
sep_count++;
|
||||||
col |= 0xFF0000FF;
|
col |= 0xFF000040;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(col && draw_lines)
|
if(col && draw_lines)
|
||||||
|
Loading…
Reference in New Issue
Block a user