# 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
|
|
| 445 | 445 | |
| 446 | 446 | def tachyon(self): |
| 447 | 447 | """ |
| 448 | | An x3d input file (as a string) containing the this object. |
| | 448 | An tachyon input file (as a string) containing the this object. |
| 449 | 449 | |
| 450 | 450 | EXAMPLES:: |
| 451 | 451 | |
| … |
… |
|
| 657 | 657 | def jmol_repr(self, render_params): |
| 658 | 658 | """ |
| 659 | 659 | 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 |
| 661 | 661 | 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. |
| 663 | 664 | |
| 664 | 665 | EXAMPLES:: |
| 665 | 666 | sage: G = sage.plot.plot3d.base.Graphics3d() |
| … |
… |
|
| 674 | 675 | def tachyon_repr(self, render_params): |
| 675 | 676 | """ |
| 676 | 677 | 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 |
| 678 | 679 | because otherwise all the intermediate concatenations can kill |
| 679 | 680 | performance). This may include a reference to color information which |
| 680 | 681 | is stored elsewhere. |
| … |
… |
|
| 727 | 728 | """ |
| 728 | 729 | Often the textures of a 3d file format are kept separate from the |
| 729 | 730 | 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. |
| 731 | 732 | |
| 732 | 733 | EXAMPLES:: |
| 733 | 734 | |
| … |
… |
|
| 1201 | 1202 | |
| 1202 | 1203 | def obj_repr(self, render_params): |
| 1203 | 1204 | """ |
| 1204 | | The x3d representation of a group is simply the concatination of |
| | 1205 | The obj representation of a group is simply the concatination of |
| 1205 | 1206 | the representation of its objects. |
| 1206 | 1207 | |
| 1207 | 1208 | EXAMPLES:: |
| … |
… |
|
| 1229 | 1230 | |
| 1230 | 1231 | def jmol_repr(self, render_params): |
| 1231 | 1232 | """ |
| 1232 | | The x3d representation of a group is simply the concatination of |
| | 1233 | The jmol representation of a group is simply the concatination of |
| 1233 | 1234 | the representation of its objects. |
| 1234 | 1235 | |
| 1235 | 1236 | EXAMPLES:: |