Skip to content

Commit

Permalink
changes!
Browse files Browse the repository at this point in the history
  • Loading branch information
Andres Codas committed Feb 1, 2010
1 parent 361eb42 commit 21a90f7
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions positionToFile.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ proc position2File { index fileToWrite position } {

}

proc tagPosition2File { index fileToWrite position } {

upvar $position pos

set filePointer [open $fileToWrite a]

puts $filePointer "$index $pos(x) $pos(y)"

close $filePointer

}


proc covariance2File { index fileToWrite covariance } {

upvar $covariance cov
Expand Down

0 comments on commit 21a90f7

Please sign in to comment.