Differences between revisions 21 and 22
Revision 21 as of 2016-09-19 14:20:59
Size: 14158
Editor: jdemeyer
Comment: Put import of cos, sin inside function to avoid side effects
Revision 22 as of 2019-11-11 21:06:35
Size: 14180
Editor: chapoton
Comment: py3 print
Deletions are marked like this. Additions are marked like this.
Line 107: Line 107:
        print "Bug selecting plot?"         print("Bug selecting plot?")
Line 182: Line 182:
            print "There's a problem with your expression."             print("There's a problem with your expression.")
Line 190: Line 190:
    print '<html><p style="font-family:Arial, sans-serif;color:#000"><span style="color:red;font-weight:bold">Error</span>: %s</p></html>' % msg     print('<html><p style="font-family:Arial, sans-serif;color:#000"><span style="color:red;font-weight:bold">Error</span>: %s</p></html>' % msg)
Line 198: Line 198:
            print error_msg('This is not an expression.')             print(error_msg('This is not an expression.'))
Line 203: Line 203:
                    print "var('%s')\nplot(%s).show(%s%s%s)" % (expression.variables()[0], repr(expression), 'aspect_ratio=1' if square else '', ', ' if square and not axes else '', 'axes=False' if not axes else '')                     print("var('%s')\nplot(%s).show(%s%s%s)" % (expression.variables()[0], repr(expression), 'aspect_ratio=1' if square else '', ', ' if square and not axes else '', 'axes=False' if not axes else ''))
Line 209: Line 209:
                    print "var('%s')\nplot(%s)" % (expression.variables()[0], repr(expression))                     print("var('%s')\nplot(%s)" % (expression.variables()[0], repr(expression)))
Line 212: Line 212:
            print error_msg('This expression has more than one variable.')             print(error_msg('This expression has more than one variable.'))
Line 215: Line 215:
            print error_msg("This expression contains an unknown function.")             print(error_msg("This expression contains an unknown function."))
Line 273: Line 273:
    if h=='hypotrochoid' and (b>=1 or b<=0):
        print "In a hypotrochoid, radius must be between 0 and 1."
        draw=False
    if h=='epitrochoid' and b<=0:
        print "In a epitrochoid, radius must be positive"
    if h == 'hypotrochoid' and (b >= 1 or b <= 0):
        print("In a hypotrochoid, radius must be between 0 and 1.")
        draw = False
    if h == 'epitrochoid' and b <= 0:
        print("In a epitrochoid, radius must be positive")

Sage Interactions - Graphics

goto interact main page

Curves of Pursuit

by Marshall Hampton.

pcurves.png

Catalog of 3D Parametric Plots

parametricplot3d.png

Interactive rotatable raytracing with Tachyon3d

tachyonrotate.png

Interactive 3d plotting

tachyonplot3d.png

Somewhat Silly Egg Painter

by Marshall Hampton (refereed by William Stein)

eggpaint.png

Plot Coloring

by Timothy Clemans

color_of_plot_changer.png

Interactive 2D Plotting

by Timothy Clemans

interactive_2d_plotting.png

Interact with matplotlib

matplotlib_interact.png

Spirograph

interactive_animate_spirograph.png

interact/graphics (last edited 2020-06-02 15:13:32 by kcrisman)