From 2d70de00e73b0328d235e25832f99a8a7f3db70d Mon Sep 17 00:00:00 2001 From: octarine-noise Date: Wed, 13 Jan 2016 23:11:44 +0100 Subject: [PATCH] changed Round Log tapering rules --- .../betterfoliage/client/render/AbstractRenderColumn.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/kotlin/mods/betterfoliage/client/render/AbstractRenderColumn.kt b/src/main/kotlin/mods/betterfoliage/client/render/AbstractRenderColumn.kt index 70a42e6..95123da 100644 --- a/src/main/kotlin/mods/betterfoliage/client/render/AbstractRenderColumn.kt +++ b/src/main/kotlin/mods/betterfoliage/client/render/AbstractRenderColumn.kt @@ -147,10 +147,10 @@ abstract class AbstractRenderColumn(modId: String) : AbstractBlockRenderingHandl // set rotation for the current quadrant val rotation = baseRotation + quadrantRotation - // disallow sharp discontinuities in the chamfer radius + // disallow sharp discontinuities in the chamfer radius, or tapering-in where inappropriate if (quadrants[idx] == LARGE_RADIUS && - upType == PARALLEL && quadrantsTop[idx] == SMALL_RADIUS && - downType == PARALLEL && quadrantsBottom[idx] == SMALL_RADIUS) { + upType == PARALLEL && quadrantsTop[idx] != LARGE_RADIUS && + downType == PARALLEL && quadrantsBottom[idx] != LARGE_RADIUS) { quadrants[idx] = SMALL_RADIUS }