|
55 | 55 | normalized, such that the created path
|
56 | 56 | is encapsulated inside the unit cell.
|
57 | 57 | path A `~matplotlib.path.Path` instance.
|
58 |
| -``(numsides, style, angle)`` The marker can also be a tuple |
59 |
| - ``(numsides, style, angle)``, which |
60 |
| - will create a custom, regular symbol. |
61 |
| -
|
62 |
| - ``numsides``: |
63 |
| - the number of sides |
64 |
| -
|
65 |
| - ``style``: |
66 |
| - the style of the regular symbol: |
67 |
| -
|
68 |
| - - 0: a regular polygon |
69 |
| - - 1: a star-like symbol |
70 |
| - - 2: an asterisk |
71 |
| - - 3: a circle (``numsides`` and |
72 |
| - ``angle`` is ignored); |
73 |
| - deprecated. |
74 |
| -
|
75 |
| - ``angle``: |
76 |
| - the angle of rotation of the symbol |
| 58 | +``(numsides, 0, angle)`` A regular polygon with ``numsides`` |
| 59 | + sides, rotated by ``angle``. |
| 60 | +``(numsides, 1, angle)`` A star-like symbol with ``numsides`` |
| 61 | + sides, rotated by ``angle``. |
| 62 | +``(numsides, 2, angle)`` An asterisk with ``numsides`` sides, |
| 63 | + rotated by ``angle``. |
77 | 64 | ============================== ====== =========================================
|
78 | 65 |
|
79 |
| -For backward compatibility, the form ``(verts, 0)`` is also accepted, but it is |
80 |
| -deprecated and equivalent to just ``verts`` for giving a raw set of vertices |
81 |
| -that define the shape. |
82 |
| -
|
83 | 66 | ``None`` is the default which means 'nothing', however this table is
|
84 | 67 | referred to from other docs for the valid inputs from marker inputs and in
|
85 | 68 | those cases ``None`` still means 'default'.
|
|
0 commit comments