Skip to content

TR5 first draft #646

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 19 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions source/common/sagemath/library.sage
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ class TBIL:
p+=arrow((0,0),end_coordinate) #TODO hide arrowheads when show_unit_circle
p+=arc((0,0),0.1,sector=(reference_angle, end_angle),color="black") #TODO add arrowhead
if show_angle_value:
if type(show_angle_value) is string:
angle_value_label = show_angle_value:
if type(show_angle_value) is str:
angle_value_label = show_angle_value
else:
angle_value_label = angle_label
p+=text(angle_value_label,(0.2*c for c in mid_coordinate), fontsize="16")
Expand Down
Loading