Skip to content
Snippets Groups Projects
Commit 5f9b5232 authored by Ansgar Philippsen's avatar Ansgar Philippsen
Browse files

fix for BZDNG-195: force start/end of cartoon segments to always be of type coil

parent 0ac4f850
Branches
Tags
No related merge requests found
......@@ -245,6 +245,12 @@ void CartoonRenderer::FudgeSplineObj(SplineEntryListList& olistlist)
for(unsigned int llc=0;llc<olistlist.size();++llc) {
LOG_DEBUG("CartoonRenderer: fudging spline segment " << llc);
SplineEntryList olist = olistlist[llc];
if(!olist.empty()) {
olist.front().type=0;
olist.back().type=0;
}
for(unsigned int lc=0;lc<olist.size();++lc) {
if(olist.at(lc).type==1) {
if(options_->GetHelixMode()==1) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment