use on_epsilon instead of 0.1, to match Q1
This commit is contained in:
parent
0c4888d5d1
commit
39475e3213
|
|
@ -1764,7 +1764,7 @@ inline void AddBrushBevels(mapentity_t &e, mapbrush_t &b)
|
|||
size_t l = 0;
|
||||
for (; l < w2.size(); l++) {
|
||||
vec_t d = qv::dot(w2[l], plane.normal) - plane.dist;
|
||||
if (d > 0.1) {
|
||||
if (d > qbsp_options.epsilon.value()) {
|
||||
break; // point in front
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue