Commit 0711c27a authored by Travis Howse's avatar Travis Howse

:Merge branch 'master' into debug

Conflicts:
	plater.py
parents fb86e290 e11f7edb
...@@ -81,6 +81,7 @@ class showstl(wx.Window): ...@@ -81,6 +81,7 @@ class showstl(wx.Window):
stltool.emitstl(name,facets,"plater_export") stltool.emitstl(name,facets,"plater_export")
print "wrote ",name print "wrote ",name
<<<<<<< HEAD
def testingloadfile(self,name): def testingloadfile(self,name):
print name print name
if not(os.path.exists(name)): if not(os.path.exists(name)):
...@@ -170,15 +171,13 @@ class showstl(wx.Window): ...@@ -170,15 +171,13 @@ class showstl(wx.Window):
centreoffset = [self.models[i].dims[0] + centre[0], self.models[i].dims[2] + centre[1]] centreoffset = [self.models[i].dims[0] + centre[0], self.models[i].dims[2] + centre[1]]
if (newrow == 0) or (newrow < y): if (newrow == 0) or (newrow < y):
newrow = y newrow = y
#To the person who works out why the offsets are applied differently here: if (cursor[0]+x+separation) >= bedsize[0]:
# Good job, it confused the hell out of me.
self.models[i].offsets[0] = cursor[0] + centre[0] - centreoffset[0]
self.models[i].offsets[1] = cursor[1] + centre[1] + centreoffset[1]
cursor[0] += x+separation
if cursor[0] >= bedsize[0]:
cursor[0] = 0 cursor[0] = 0
cursor[1] += newrow+separation cursor[1] += newrow+separation
newrow = 0 newrow = 0
#To the person who works out why the offsets are applied differently here:
# Good job, it confused the hell out of me.
self.models[i].offsets[0] = cursor[0] + centre[0] - centreoffset[0] self.models[i].offsets[0] = cursor[0] + centre[0] - centreoffset[0]
self.models[i].offsets[1] = cursor[1] + centre[1] + centreoffset[1] self.models[i].offsets[1] = cursor[1] + centre[1] + centreoffset[1]
cursor[0] += x+separation cursor[0] += x+separation
...@@ -186,9 +185,12 @@ class showstl(wx.Window): ...@@ -186,9 +185,12 @@ class showstl(wx.Window):
print "Bed full, sorry sir :(" print "Bed full, sorry sir :("
self.Refresh() self.Refresh()
return return
self.Refresh() centreoffset = [bedsize[0]-cursor[0],bedsize[1]-cursor[1]]
for i in self.models:
self.models[i].offsets[0] += centreoffset[0]
self.models[i].offsets[1] += centreoffset[1]
self.Refresh()
def right(self,event): def right(self,event):
dlg=wx.FileDialog(self,"Open file to print",self.basedir,style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST) dlg=wx.FileDialog(self,"Open file to print",self.basedir,style=wx.FD_OPEN|wx.FD_FILE_MUST_EXIST)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment