fix build process for extension modules
[PyX.git] / examples / 3dgraphs / color.txt
blob7b6f50ac57f1d4b03cee2f93b39a3461ad49ddea
1 A colored surface
3 To add colors to the surface you need to pass color data to the plot command.
4 As in this example, you can just reuse the z value. Alternatively you could
5 pass some independend color data. ...
7 To bring colors instead of black/white to the surface, you need to change the
8 gradient. Be sure to use the same color space for the gridcolor and the
9 backcolor too.
11 ! In this example we also modified the projector. By that you can change the
12 view angle, and you can also (as in this example) use a parallel projection
13 instead of the default central projection. While the later looks more natural,
14 a parallel projection keeps lines parallel independend from their depths. An
15 very simple justification of the parallel projection is the vertical z axis,
16 which stays vertical in the projection. Also the linear axes have equal
17 distances between the ticks, which is not true for central projections.
19 ! Skipping the value for the z component will allow you to plot this surface
20 on a two-dimensional graph as well.