From 7acea5a219bbde63670c0d96ada553e25490a698 Mon Sep 17 00:00:00 2001 From: LeForgeron Date: Sun, 19 Nov 2017 08:12:56 +0100 Subject: [PATCH] fix the orientation of new uv-mapping of ovus to be similar to cylinder & lemon (it was upside down) --- 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 1da9e07fb..870cfaed1 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; }