Skip to content
Snippets Groups Projects
Commit a523b726 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

comm

parent a1d5eae4
No related branches found
No related tags found
No related merge requests found
......@@ -1130,6 +1130,10 @@ void NEdif::Plot( bool add )
e->P()->xco.str(), e->P()->yco.str(),
"curve file "+strg(k)+" scan "+strg(j) );
} else if ( fc ) {
// improved line plotting:
// - stop/start line when leaving/reentering the frame
// - interpolate when crossing the horizontal border (TODO)
// - interpolate at discontinuities (TODO)
double x, y;
int npts = 100;
double delta0 = 1.0/(npts-1.e-10);
......@@ -1150,10 +1154,9 @@ void NEdif::Plot( bool add )
goto incr_pos;
}
if( !was_inside ){
// start new line segment
SS.push_back( CScan() );
s = &( SS[SS.size()-1] );
*s = S;
s->Clear();
}
s->push_back( x, y );
incr_pos:
......
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