/usr/share/sagcad/tool/ellipse_make.ops is in sagcad 0.9.14-0ubuntu3.
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 | #------------------------------------------------------------
# 楕円を描くための
# outside process の動作を指示するファイル
# SagCAD のステータスバーに、メッセージを出す。
MSGBAR,"Ellipse Make"
# SELECT,1個orたくさん,セレクトする要素,"keyword","message",CUT or COPY
SELECT,ONE,129,"point1","長軸の1点を選択 (L:Point / R:Mouse)",COPY
SELECT,ONE,129,"point2","長軸のもう1点を選択 (L:Point / R:Mouse)",COPY
SELECT,ONE,129,"point3","短軸の1点を選択 (L:Point / R:Mouse)",COPY
# default "sag_temp.txt"
OUT_FILE,"./ruby/sag_out.txt"
# フィルタープログラム
EXEC,"ruby","./ruby/ellipse_make.rb"
# default "sag_temp.txt"
INP_FILE,"./ruby/sag_inp.txt"
# 最初に戻る
LOOP,1
# 終了
END
|