Commit 329587efd35fdbbd35bfd7e05538246913ecc0c1

Authored by David Mayerich
1 parent 9b3cbdda

fixed compiler error in a cylinder.h constructor

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
stim/visualization/cylinder.h
@@ -58,7 +58,8 @@ public: @@ -58,7 +58,8 @@ public:
58 58
59 cylinder(stim::centerline<T> p, std::vector<T> s) 59 cylinder(stim::centerline<T> p, std::vector<T> s)
60 { 60 {
61 - d = s; 61 + //was d = s;
  62 + p = s;
62 init(); 63 init();
63 } 64 }
64 65