From 5a80def1d83bbcfd359147fe3e7020609f7565d9 Mon Sep 17 00:00:00 2001
From: Alexander Rose <alex.rose@rcsb.org>
Date: Thu, 20 Sep 2018 12:31:56 -0700
Subject: [PATCH] tweaked polymer trace for coarse units

---
 .../representation/structure/visual/polymer-trace-mesh.ts       | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/mol-geo/representation/structure/visual/polymer-trace-mesh.ts b/src/mol-geo/representation/structure/visual/polymer-trace-mesh.ts
index 6ecfa05d4..1fe0a7e37 100644
--- a/src/mol-geo/representation/structure/visual/polymer-trace-mesh.ts
+++ b/src/mol-geo/representation/structure/visual/polymer-trace-mesh.ts
@@ -36,6 +36,7 @@ async function createPolymerTraceMesh(ctx: RuntimeContext, unit: Unit, structure
     const vertexCount = linearSegments * radialSegments * polymerElementCount + (radialSegments + 1) * polymerElementCount * 2
     const builder = MeshBuilder.create(vertexCount, vertexCount / 10, mesh)
 
+    const isCoarse = Unit.isCoarse(unit)
     const state = createCurveSegmentState(linearSegments)
     const { curvePoints, normalVectors, binormalVectors } = state
 
@@ -54,6 +55,7 @@ async function createPolymerTraceMesh(ctx: RuntimeContext, unit: Unit, structure
         interpolateCurveSegment(state, v, tension, shift)
 
         let width = sizeTheme.size(v.center)
+        if (isCoarse) width *= aspectRatio / 2
 
         if (isSheet) {
             const height = width * aspectRatio
-- 
GitLab