diff --git a/Framework/Geometry/src/Instrument/StructuredDetector.cpp b/Framework/Geometry/src/Instrument/StructuredDetector.cpp
index 40ba6ba2edc487ecfa1cc7e153e17d51035404ac..76de9fc3441f75b397c7b52b9c3bdb59a3b8dbd5 100644
--- a/Framework/Geometry/src/Instrument/StructuredDetector.cpp
+++ b/Framework/Geometry/src/Instrument/StructuredDetector.cpp
@@ -398,15 +398,9 @@ Detector *StructuredDetector::addDetector(CompAssembly *parent,
   auto yrb = m_yvalues[(y * w) + x + 1];
 
   // calculate midpoint of trapeziod
-  auto a = std::fabs(xrf - xlf);
-  auto b = std::fabs(xrb - xlb);
-  auto h = std::fabs(ylb - ylf);
-  auto cx = ((a + b) / 4);
-  auto cy = h / 2;
-
-  // store detector position before translating to origin
-  auto xpos = xlb + cx;
-  auto ypos = ylb + cy;
+  // calculate midpoint of trapeziod
+  auto xpos = (xlb + xlf + xrf + xrb) / 4;
+  auto ypos = (ylb + ylf + yrf + yrb) / 4;
 
   // Translate detector shape to origin
   xlf -= xpos;
diff --git a/qt/widgets/instrumentview/src/BankRenderingHelpers.cpp b/qt/widgets/instrumentview/src/BankRenderingHelpers.cpp
index 66e01291f60327a7c4ec8625366d03f095acc8ef..e2d2b1168f44d27ca5068031ed6b554f59805c87 100644
--- a/qt/widgets/instrumentview/src/BankRenderingHelpers.cpp
+++ b/qt/widgets/instrumentview/src/BankRenderingHelpers.cpp
@@ -164,10 +164,11 @@ void renderStructuredBank(const Mantid::Geometry::ComponentInfo &compInfo,
   for (size_t x = 0; x < colWidth; x += 3) {
     auto index = x / 3;
     const auto &column = compInfo.children(columns[index]);
-    for (size_t y = 0; y < column.size() - 1; ++y) {
+    for (size_t y = 0; y < column.size(); ++y) {
       extractHexahedron(compInfo.shape(column[y]), hex);
+      auto rot = compInfo.rotation(column[y]);
+      rotateHexahedron(hex, rot);
       offsetHexahedronPosition(hex, -basePos);
-      rotateHexahedron(hex, compInfo.rotation(column[y]));
       offsetHexahedronPosition(hex, compInfo.position(column[y]));
 
       glColor3ub((GLubyte)color[column[y]].red(),