__init__(self,
xhead=None,
yhead=None,
zhead=None,
xtail=None,
ytail=None,
ztail=None,
color=None,
r=0.0,
g=1.0,
b=0.0,
radius=0.15,
transparency=None,
opacity=1.0,
resolution=16)
(Constructor)
|
|
Constructor requires:
xhead, yhead, zhead: corrdinate of the head position
xtail, ytail, ztail: coordinate of the tail position
color: One of:
Color object (Color class)
Color name (string)
Tuple of (R, G, B) (each a float in range 0.0-1.0)
Optional arguments:
radius: radius of the arrow in Angstroms
Default: .15
opacity: 0.0 (invisible) through 1.0 (opaque)
Default: 0.0
resolution: Ranges from ?? to ??. Default: ??
- Overrides:
object.__init__
|