We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90c99ec commit cadce6fCopy full SHA for cadce6f
1 file changed
src/ObjObject.cs
@@ -234,17 +234,17 @@ private static Face FindSuperTriangle(Vertex[] vertices)
234
{
235
if (v.X < minX)
236
minX = v.X;
237
- else if (v.X > maxX)
+ if (v.X > maxX)
238
maxX = v.X;
239
240
if (v.Y < minY)
241
minY = v.Y;
242
- else if (v.Y > maxY)
+ if (v.Y > maxY)
243
maxY = v.Y;
244
245
if (v.Z < minZ)
246
minZ = v.Z;
247
- else if (v.Z > maxZ)
+ if (v.Z > maxZ)
248
maxZ = v.Z;
249
}
250
0 commit comments