Adding inital value for plot level

This commit is contained in:
Patrick Shriwise 2019-02-27 16:19:12 -06:00
parent 10a8e3a83d
commit 64d54c692d

View file

@ -70,6 +70,9 @@ class _Plot(Structure):
('pixels_', c_int*3),
('level_', c_int)]
def __init__(self):
self.level_ = -1
@property
def origin(self):
out = [self.origin_.x, self.origin_.y, self.origin_.z]