From 1de84cd1c977133666e1ff474d79dc8ed31b3991 Mon Sep 17 00:00:00 2001 From: LeForgeron Date: Sun, 8 Apr 2018 21:36:30 +0200 Subject: [PATCH] fix the orientation of new uv-mapping of ovus to be similar to cylinder and lemon. Start from a commit which does not fail the automatic verification --- source/core/shape/ovus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/shape/ovus.cpp b/source/core/shape/ovus.cpp index 00f9e02e0..00ba0a218 100644 --- a/source/core/shape/ovus.cpp +++ b/source/core/shape/ovus.cpp @@ -981,7 +981,7 @@ void Ovus::CalcUV(const Vector3d& IPoint, Vector2d& Result) const theta = 0; Result[U] = theta; - Result[V] = phi; + Result[V] = 1.0-phi; }