Skip to content
Snippets Groups Projects
Commit a38e19fc authored by cmaffeo2's avatar cmaffeo2
Browse files

Fixed print statement in draw_cylinder

parent 6a314a50
No related branches found
No related tags found
No related merge requests found
......@@ -2921,10 +2921,10 @@ proc calcforces {} {
## iterate through the model segments
for s in self.segments:
if isinstance(s,DoubleStrandedSegment):
print("## dsDNA! \n")
tclFile.write("## dsDNA! \n")
draw_cylinder(s,10,"cyan")
elif isinstance(s,SingleStrandedSegment):
print("## ssDNA! \n")
tclFile.write("## ssDNA! \n")
draw_cylinder(s,3,"orange")
else:
raise Exception ("your model includes beads that are neither ssDNA nor dsDNA")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment