Public Member Functions | List of all members
wirecell.util.geo.shapes.Point3D Class Reference
Inheritance diagram for wirecell.util.geo.shapes.Point3D:
wirecell.util.geo.shapes.Point2D wirecell.util.geo.shapes.Point

Public Member Functions

def z (self)
 
def z (self, val)
 
- Public Member Functions inherited from wirecell.util.geo.shapes.Point2D
def x (self)
 
def x (self, val)
 
def y (self)
 
def y (self, val)
 
- Public Member Functions inherited from wirecell.util.geo.shapes.Point
def __init__ (self, coords)
 
def __str__ (self)
 
def __repr__ (self)
 
def __len__ (self)
 
def __getitem__ (self, key)
 
def __setitem__ (self, key, val)
 
def __iter__ (self)
 
def __abs__ (self)
 
def __sub__ (self, other)
 
def __add__ (self, other)
 
def __mul__ (self, other)
 
def __div__ (self, other)
 
def dot (self, other)
 
def magnitude (self)
 
def unit (self)
 

Detailed Description

Definition at line 90 of file shapes.py.

Member Function Documentation

def wirecell.util.geo.shapes.Point3D.z (   self)

Definition at line 93 of file shapes.py.

93  def z(self):
94  return self[2]
def wirecell.util.geo.shapes.Point3D.z (   self,
  val 
)

Definition at line 96 of file shapes.py.

96  def z(self, val):
97  self[2] = val
98 
99 
100 
101 

The documentation for this class was generated from the following file: