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