Changeset 7876:7dc2819cda5d for sage/plot/plot.py
- Timestamp:
- 12/23/07 08:02:26 (5 years ago)
- Branch:
- default
- Tags:
- 2.9.1.rc3
- File:
-
- 1 edited
-
sage/plot/plot.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sage/plot/plot.py
r7867 r7876 1705 1705 if coerce: 1706 1706 for z in points: 1707 if len(z) == 3:1707 if isinstance(z, (list,tuple)) and len(z) == 3: 1708 1708 return self._graphic3d()(points, coerce=coerce, **kwds) 1709 1709 xdata.append(float(z[0])) … … 1711 1711 else: 1712 1712 for z in points: 1713 if len(z) == 3:1713 if isinstance(z, (list,tuple)) and len(z) == 3: 1714 1714 return self._graphic3d()(points, coerce=coerce, **kwds) 1715 1715 xdata.append(z[0])
Note: See TracChangeset
for help on using the changeset viewer.
