Skip to content

Commit

Permalink
[Fix] 軽微修正
Browse files Browse the repository at this point in the history
  • Loading branch information
omonomo committed Oct 30, 2024
1 parent 733cbc1 commit 8ebc786
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions font_generator.sh
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,6 @@ move_y_numerator="260" # 分子のY座標移動量
move_x_denominator="480" # 分母のX座標移動量
move_y_denominator="-30" # 分母のY座標移動量

# 括弧移動量
move_y_bracket="0"

# 縦書き全角ラテン小文字移動量
move_y_vert_1="-10"
move_y_vert_2="10"
Expand All @@ -212,6 +209,9 @@ move_x_oblique="-48" # 移動量 (後の処理で * 100 にする)
move_y_math="-25" # 通常
move_y_s_math="-10" # 上付き、下付き

# 括弧移動量
move_y_bracket="0"

# calt用
move_y_calt_separate3="-510" # 3桁区切り表示のY座標
move_y_calt_separate4="452" # 4桁区切り表示のY座標
Expand Down Expand Up @@ -427,16 +427,6 @@ scale_height_block=$(bc <<< "scale=1; ${scale_height_block} * ${scale_height_pl_
# オブリーク体用
move_x_oblique=$((move_x_oblique * 100)) # Transform()用 (移動量 * 100)

# calt用
move_y_calt_colon=$((move_y_math + 79)) # : のY座標移動量
move_y_calt_colon=$(bc <<< "scale=0; ${move_y_calt_colon} * ${scale_height_latin} / 100") # : のY座標移動量
move_y_calt_bar=$((move_y_math - 5)) # | のY座標移動量
move_y_calt_bar=$(bc <<< "scale=0; ${move_y_calt_bar} * ${scale_height_latin} / 100") # | のY座標移動量
move_y_calt_tilde=$((move_y_math - 170)) # ~ のY座標移動量
move_y_calt_tilde=$(bc <<< "scale=0; ${move_y_calt_tilde} * ${scale_height_latin} / 100") # ~ のY座標移動量
move_y_calt_math=$((- move_y_math + move_y_bracket + 6)) # *+-= のY座標移動量
move_y_calt_math=$(bc <<< "scale=0; ${move_y_calt_math} * ${scale_height_latin} / 100") # *+-= のY座標移動量

# Print information message
cat << _EOT_

Expand Down Expand Up @@ -776,6 +766,20 @@ else
fi
echo

# calt用
move_y_calt_colon=$((move_y_math + 78)) # : のY座標移動量
move_y_calt_colon=$(bc <<< "scale=0; ${move_y_calt_colon} * ${scale_height_latin} / 100") # : のY座標移動量
move_y_calt_colon=$(bc <<< "scale=0; ${move_y_calt_colon} * ${scale_height_hankaku} / 100") # : のY座標移動量
move_y_calt_bar=$((move_y_math - 5)) # | のY座標移動量
move_y_calt_bar=$(bc <<< "scale=0; ${move_y_calt_bar} * ${scale_height_latin} / 100") # | のY座標移動量
move_y_calt_bar=$(bc <<< "scale=0; ${move_y_calt_bar} * ${scale_height_hankaku} / 100") # | のY座標移動量
move_y_calt_tilde=$((move_y_math - 169)) # ~ のY座標移動量
move_y_calt_tilde=$(bc <<< "scale=0; ${move_y_calt_tilde} * ${scale_height_latin} / 100") # ~ のY座標移動量
move_y_calt_tilde=$(bc <<< "scale=0; ${move_y_calt_tilde} * ${scale_height_hankaku} / 100") # ~ のY座標移動量
move_y_calt_math=$((- move_y_math + move_y_bracket + 6)) # *+-= のY座標移動量
move_y_calt_math=$(bc <<< "scale=0; ${move_y_calt_math} * ${scale_height_latin} / 100") # *+-= のY座標移動量
move_y_calt_math=$(bc <<< "scale=0; ${move_y_calt_math} * ${scale_height_hankaku} / 100") # *+-= のY座標移動量

# フォントバージョンにビルドNo追加
buildNo=$(date "+%s")
buildNo=$((buildNo % 315360000 / 60))
Expand Down

0 comments on commit 8ebc786

Please sign in to comment.