mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-20 11:54:48 +00:00
fixed a bug with linewidth in mdUnchanged
This commit is contained in:
parent
4fb2440543
commit
feaeee86f0
@ -772,7 +772,9 @@ void compute_side_by_area() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ld get_width(dqi_poly* p) {
|
ld get_width(dqi_poly* p) {
|
||||||
if(p->flags & POLY_PRECISE_WIDE) {
|
if((p->flags & POLY_FORCEWIDE) || pmodel == mdUnchanged)
|
||||||
|
return p->linewidth;
|
||||||
|
else if(p->flags & POLY_PRECISE_WIDE) {
|
||||||
ld maxwidth = 0;
|
ld maxwidth = 0;
|
||||||
for(int i=0; i<p->cnt; i++) {
|
for(int i=0; i<p->cnt; i++) {
|
||||||
hyperpoint h1 = p->V * glhr::gltopoint((*p->tab)[p->offset+i]);
|
hyperpoint h1 = p->V * glhr::gltopoint((*p->tab)[p->offset+i]);
|
||||||
@ -780,8 +782,6 @@ ld get_width(dqi_poly* p) {
|
|||||||
}
|
}
|
||||||
return maxwidth * p->linewidth;
|
return maxwidth * p->linewidth;
|
||||||
}
|
}
|
||||||
else if(p->flags & POLY_FORCEWIDE)
|
|
||||||
return p->linewidth;
|
|
||||||
else
|
else
|
||||||
return linewidthat(tC0(p->V)) * p->linewidth;
|
return linewidthat(tC0(p->V)) * p->linewidth;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user