remove debugging output file
git-svn-id: svn://localhost/ardour2/trunk@1203 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
b2307a30fb
commit
47d076418d
@ -601,15 +601,11 @@ AutomationLine::determine_visible_control_points (ALPoints& points)
|
||||
|
||||
view_index = 0;
|
||||
|
||||
ofstream oout ("orig_coordinates");
|
||||
|
||||
for (model = alist.begin(), pi = 0; pi < npoints; ++model, ++pi) {
|
||||
|
||||
double tx = points[pi].x;
|
||||
double ty = points[pi].y;
|
||||
|
||||
oout << tx << ' ' << ty << endl;
|
||||
|
||||
/* now ensure that the control_points vector reflects the current curve
|
||||
state, but don't plot control points too close together. also, don't
|
||||
plot a series of points all with the same value.
|
||||
@ -710,8 +706,6 @@ AutomationLine::determine_visible_control_points (ALPoints& points)
|
||||
view_index++;
|
||||
}
|
||||
|
||||
oout.close ();
|
||||
|
||||
/* discard extra CP's to avoid confusing ourselves */
|
||||
|
||||
while (control_points.size() > view_index) {
|
||||
|
Loading…
Reference in New Issue
Block a user