Skip to content

Commit

Permalink
Fix build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
yanorei32 committed Jan 2, 2022
1 parent 5f3247e commit 0492bac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ generate_empty_png \

len=350
center=800
pos_x_left=$(( $center - $len )) || true
pos_x_left=$(( $center - $len ))
pos_x_right=$(( $center + $len * 2 ))
pos_y_top=$( echo "$center-sqrt(3)*$len" | bc -l )
pos_y_bottom=$( echo "$center+sqrt(3)*$len" | bc -l )
Expand Down Expand Up @@ -524,7 +524,7 @@ done
len=16
center=128
pos_x_left=$(($center - $len - 32))
pos_x_right=$(($center + $len "*" 2 - 32))
pos_x_right=$(($center + $len * 2 - 32))
pos_y_top=$( echo "$center-sqrt(3)*$len" | bc -l )
pos_y_bottom=$( echo "$center+sqrt(3)*$len" | bc -l )

Expand Down

0 comments on commit 0492bac

Please sign in to comment.