pyllar :: Plot3 :: Plot3 :: Class Plot3
[hide private]
[frames] | no frames]

Class Plot3

source code


Instance Methods [hide private]
 
__init__(self, data, style='b-')
Create a new Plot3 object.
source code
 
SetStyle(self, style)
Set the plot style (color and marker) from a style string.
source code
 
SetLineWidth(self, width) source code
 
SetMarkerSize(self, size) source code

Inherited from Plottable.Plottable: AddToAxes, GetBounds, SetColor, SetDirection, SetOpacity, SetScale, UpdatePos

Method Details [hide private]

__init__(self, data, style='b-')
(Constructor)

source code 

Create a new Plot3 object.

Plot3(data, style) data is a Nx3 NumPy array that defines the N points of the plot. style is a string and can be any combination of color symbols (r, g, b, y, m, c, k) and line styles (-, --, -).
Overrides: Plottable.Plottable.__init__