Ticket #5767: 5767-plot3d-base-doctests2.patch

File 5767-plot3d-base-doctests2.patch, 2.6 KB (added by robertwb, 4 years ago)

apply after other two

  • sage/plot/plot3d/base.pyx

    # HG changeset patch
    # User Robert Bradshaw <robertwb@math.washington.edu>
    # Date 1241556571 25200
    # Node ID d2b24ae2257ab51cdd06ecbc22822fcd75fcb423
    # Parent  7f2990e6bf0a1a90ed3fdbe1e4d5ebae1bd4a099
    [mq]: base-docs2
    
    diff -r 7f2990e6bf0a -r d2b24ae2257a sage/plot/plot3d/base.pyx
    a b  
    445445 
    446446    def tachyon(self): 
    447447        """ 
    448         An x3d input file (as a string) containing the this object.  
     448        An tachyon input file (as a string) containing the this object.  
    449449         
    450450        EXAMPLES:: 
    451451 
     
    657657    def jmol_repr(self, render_params): 
    658658        """ 
    659659        A (possibly nested) list of strings which will be concatenated and  
    660         used by jmol to construct self. (Nested lists of strings are used  
     660        used by jmol to render self. (Nested lists of strings are used  
    661661        because otherwise all the intermediate concatenations can kill  
    662         performance).  
     662        performance). This may refer to several remove files, which 
     663        are stored in render_parames.output_archive. 
    663664         
    664665        EXAMPLES:: 
    665666            sage: G = sage.plot.plot3d.base.Graphics3d() 
     
    674675    def tachyon_repr(self, render_params): 
    675676        """ 
    676677        A (possibly nested) list of strings which will be concatenated and  
    677         used by tachyon to construct self. (Nested lists of strings are used  
     678        used by tachyon to render self. (Nested lists of strings are used  
    678679        because otherwise all the intermediate concatenations can kill  
    679680        performance). This may include a reference to color information which 
    680681        is stored elsewhere.  
     
    727728        """ 
    728729        Often the textures of a 3d file format are kept separate from the  
    729730        objects themselves. This function returns the set of textures used,  
    730         so they can be defined in a preable or separate file.  
     731        so they can be defined in a preamble or separate file.  
    731732         
    732733        EXAMPLES:: 
    733734 
     
    12011202 
    12021203    def obj_repr(self, render_params): 
    12031204        """ 
    1204         The x3d representation of a group is simply the concatination of  
     1205        The obj representation of a group is simply the concatination of  
    12051206        the representation of its objects. 
    12061207         
    12071208        EXAMPLES:: 
     
    12291230 
    12301231    def jmol_repr(self, render_params): 
    12311232        """ 
    1232         The x3d representation of a group is simply the concatination of  
     1233        The jmol representation of a group is simply the concatination of  
    12331234        the representation of its objects. 
    12341235         
    12351236        EXAMPLES::