/usr/share/saods9/library/ellipseannulus.tcl is in saods9 7.5+repack1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | # Copyright (C) 1999-2016
# Smithsonian Astrophysical Observatory, Cambridge, MA, USA
# For conditions of distribution and use, see copyright notice in "copyright"
package provide DS9 1.0
proc EllipseAnnulusDialog {varname} {
upvar #0 $varname var
global $varname
# see if we already have a header window visible
if {[winfo exists $var(top)]} {
raise $var(top)
return
}
# procs
set var(which) ellipseannulus
set var(proc,apply) MarkerBaseAnnulusRectApply
set var(proc,close) MarkerBaseAnnulusRectClose
set var(proc,generate) MarkerBaseAnnulusGenerateEllipse
set var(proc,coordCB) MarkerBaseAnnulusRectCoordCB
set var(proc,editCB) MarkerBaseAnnulusRectEditCB
set var(proc,distCB) MarkerBaseAnnulusRectDistCB
# base
MarkerBaseAnnulusRectDialog $varname radius Major Minor
}
|