summaryrefslogtreecommitdiffstats
path: root/tksao/frame/marker.C
diff options
context:
space:
mode:
Diffstat (limited to 'tksao/frame/marker.C')
-rw-r--r--tksao/frame/marker.C9
1 files changed, 0 insertions, 9 deletions
diff --git a/tksao/frame/marker.C b/tksao/frame/marker.C
index 2a6ba16..65563f2 100644
--- a/tksao/frame/marker.C
+++ b/tksao/frame/marker.C
@@ -1334,15 +1334,6 @@ void Marker::analysisXYEResult(char* xname, char* yname, char* ename,
Blt_ResetVector(ee, e, num, num*sizeof(double), TCL_DYNAMIC);
}
-void Marker::analysisXYEResult(double* x, double* y, double* e, int num)
-{
- for (int ii=0; ii<num; ii++) {
- ostringstream str;
- str << x[ii] << ' ' << y[ii] << ' ' << e[ii] << endl << ends;
- Tcl_AppendResult(parent->interp, str.str().c_str(), NULL);
- }
-}
-
Matrix Marker::fwdMatrix()
{
return Rotate(angle) * FlipY() * Translate(center);