Skip to content

Commit

Permalink
preparation for general circle regression
Browse files Browse the repository at this point in the history
  • Loading branch information
zsiki committed Apr 14, 2024
1 parent 63ef85c commit d456266
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 356 deletions.
2 changes: 1 addition & 1 deletion src/graphgeo.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ proc GeoNewWindow {{win_name ""}} {

menu $this.menu.regression -tearoff 0
set i 0
set menuBreak {2}
set menuBreak {3}
foreach r $reglist {
$this.menu.regression add command -label $r -command "GeoReg $i"
if {[lsearch $menuBreak $i] >= 0} {
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/geo_easy.cze
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global geoEasyMsg

# regression types
global reglist
set reglist { "2D linie" "Rovnoběžné 2D linie" "Kružnice" \
set reglist { "2D linie" "Rovnoběžné 2D linie" "Horizontal circle" "Kružnice" \
"Rovina" "Horizontální rovina" "Vertikální rovina" \
"Koule" "3D linie" "Angle of planes" } ;# "Vertikální paraboloid" ;# TODO

Expand Down
2 changes: 1 addition & 1 deletion src/i18n/geo_easy.eng
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global geoEasyMsg

# regression types
global reglist
set reglist { "2D Line" "Parallel 2D lines" "Circle" \
set reglist { "2D Line" "Parallel 2D lines" "Horizontal circle" "Circle (not ready)" \
"Plane" "Horizontal plane" "Vertical plane" \
"Sphere" "3D line" "Angle of planes" } ;# "Vertical paraboloid"

Expand Down
2 changes: 1 addition & 1 deletion src/i18n/geo_easy.es
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global geoEasyMsg

# regression types
global reglist
set reglist { "L\u00EDnea 2D" "L\u00EDneas 2D paralelas" "C\u00EDrculo" \
set reglist { "L\u00EDnea 2D" "L\u00EDneas 2D paralelas" "Horizontal circle" "C\u00EDrculo" \
"Plano" "Plano horizontal" "Plano vertical" \
"Esfera" "L\u00EDnea 3D" "Angle of planes" } ;# "Vertical paraboloid" ;# TODO

Expand Down
2 changes: 1 addition & 1 deletion src/i18n/geo_easy.ger
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global geoEasyMsg

# regression types
global reglist
set reglist {"Gerade 2D" "Parallele 2D Linien" "Kreis" \
set reglist {"Gerade 2D" "Parallele 2D Linien" "Horizontale kreis" "Kreis" \
"Ebene" "Horizontale Ebene" "Vertikale Ebene" \
"Kugel" "3D Linie" "Angle of planes" } ;# "vertikale Paraboloid" ;# TODO

Expand Down
2 changes: 1 addition & 1 deletion src/i18n/geo_easy.hun
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global geoEasyMsg

# regression types
global reglist
set reglist {"2D egyenes" "Párhuzamos egyenesek" "Kör" \
set reglist {"2D egyenes" "Párhuzamos egyenesek" "Vízszintes kör" "Kör (nincs kész)" \
"Sík" "Vízszintes sík" "Függőleges sík" \
"Gömb" "3D egyenes" "Síkok szöge"} ;# "Függőleges paraboloid"

Expand Down
2 changes: 1 addition & 1 deletion src/i18n/geo_easy.pl
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

# regression types
global reglist
set reglist { "Linia 2D" "Równoległe linie 2D" "Koło" \
set reglist { "Linia 2D" "Równoległe linie 2D" "Horizontal circle" "Koło" \
"Płaszczyzna" "Płaszczyzna pozioma" "Płaszczyzna pionowa" \
"Sfera" "Linia 3D" "Kąt nachylenia płaszczyzn" } ;# "Vertical paraboloid"

Expand Down
2 changes: 1 addition & 1 deletion src/i18n/geo_easy.rus
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ global geoEasyMsg

# regression types
global reglist
set reglist { "2D Линия" "Параллельная 2D линия" "Круг" \
set reglist { "2D Линия" "Параллельная 2D линия" "Horizontal circle" "Круг" \
"Плоскость" "Горизонтальная плоскость" "Вертикальная плоскость" \
"Сфера" "3D линия" "Angle of planes"} ;# "Вертикальный параболоид"

Expand Down
2 changes: 1 addition & 1 deletion src/maskgeo.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ proc GeoMask {maskn f {type "_geo"}} {

menu $mnu.regression -tearoff 0
set i 0
set menuBreak {2}
set menuBreak {3}
foreach r $reglist {
$mnu.regression add command -label $r -command "GeoReg $i"
if {[lsearch $menuBreak $i] >= 0} {
Expand Down
Loading

0 comments on commit d456266

Please sign in to comment.