-
Notifications
You must be signed in to change notification settings - Fork 25
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
Kathy first draft for TR1 #357
base: main
Are you sure you want to change the base?
Conversation
Click the red X to see the error:
Please push an update with IDs of the form |
🚀 Preview available 🚀 |
🚀 Preview available 🚀 |
🚀 Preview available 🚀 |
🚀 Preview available 🚀 |
<figure xml:id="standard-position"><image width="50%"> | ||
<sageplot> | ||
p=arrow((0,0),(4,0),aspect_ratio=1) | ||
p+=arrow((0,0),(-3,-3)) | ||
p+=arc((0,0),0.5,sector=(0, 5*pi/4),color="black") | ||
p | ||
</sageplot> | ||
</image></figure> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@StevenClontz We want to have the axes show up on this one, but no tickmarks or tickmark labels. Do you know how to do that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I figured it out. The key is to past a list of two empty lists (ticks=[[],[]]
), rather than ticks=None
like I was trying.
<figure xml:id="standard-position"><image width="50%"> | |
<sageplot> | |
p=arrow((0,0),(4,0),aspect_ratio=1) | |
p+=arrow((0,0),(-3,-3)) | |
p+=arc((0,0),0.5,sector=(0, 5*pi/4),color="black") | |
p | |
</sageplot> | |
</image></figure> | |
<figure xml:id="standard-position"><image width="50%"> | |
<sageplot> | |
p=arrow((0,0),(4,0),aspect_ratio=1,ticks=[[],[]]) | |
p+=arrow((0,0),(-3,-3)) | |
p+=arc((0,0),0.5,sector=(0, 5*pi/4),color="black") | |
p | |
</sageplot> | |
</image></figure> |
<sageplot> | ||
p=arrow((0,0),(4,0),aspect_ratio=1) | ||
p+=arrow((0,0),(-3,-3)) | ||
p+=arc((0,0),0.5,sector=(5*pi/4,2*pi),color="black") | ||
p | ||
</sageplot> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@StevenClontz Same for this one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<sageplot> | |
p=arrow((0,0),(4,0),aspect_ratio=1) | |
p+=arrow((0,0),(-3,-3)) | |
p+=arc((0,0),0.5,sector=(5*pi/4,2*pi),color="black") | |
p | |
</sageplot> | |
<sageplot> | |
p=arrow((0,0),(4,0),aspect_ratio=1,ticks=[[],[]]) | |
p+=arrow((0,0),(-3,-3)) | |
p+=arc((0,0),0.5,sector=(5*pi/4,2*pi),color="black") | |
p | |
</sageplot> |
🚀 Preview available 🚀 |
🚀 Preview available 🚀 |
@kathypinzon See above for the question you had earlier. You can commit those suggestions, then look at the preview in Codechat. Should look like this (for the first one) If you're happy with that, mark this as ready for review |
first half of TR1 ready... the angles aren't working in sage though.