mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-06 01:16:03 +08:00
Fixed #148
This commit is contained in:
parent
3642bc46eb
commit
d6baf4bbee
@ -33,14 +33,14 @@ class Vector3(object):
|
|||||||
|
|
||||||
def __iadd__(self, v):
|
def __iadd__(self, v):
|
||||||
self.x += v.x
|
self.x += v.x
|
||||||
self.y += v.x
|
self.y += v.y
|
||||||
self.z += v.x
|
self.z += v.z
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def __isub__(self, v):
|
def __isub__(self, v):
|
||||||
self.x += v.x
|
self.x += v.x
|
||||||
self.y += v.x
|
self.y += v.y
|
||||||
self.z += v.x
|
self.z += v.z
|
||||||
return self
|
return self
|
||||||
|
|
||||||
def __imul__(self, v):
|
def __imul__(self, v):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user