Skip to content

Commit

Permalink
Merge branch 'master' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sakana3 committed Mar 8, 2020
2 parents 6b95c86 + 6f13720 commit abd22d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Addons/PolyQuilt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
bl_info = {
"name" : "PolyQuilt",
"author" : "Sakana3",
"version": (1, 1, 5),
"version": (1, 2, 0),
"blender" : (2, 80, 0),
"location": "View3D > Mesh > PolyQuilt",
"description": "Lowpoly Tool",
Expand Down
2 changes: 1 addition & 1 deletion Addons/PolyQuilt/subtools/subtool_polypen.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def AdsorptionEdge( self , p0 , p1 , edge ) :

vp = [ pqutil.location_3d_to_region_2d(v.co) for v in wp ]

ret = Ret(WorldPos = [ v.co for v in wp] , ViewPos = vp , Center = (vp[0]+vp[1]) / 2 , Verts = wp )
ret = Ret(WorldPos = [ self.bmo.obj.matrix_world @ v.co for v in wp] , ViewPos = vp , Center = (vp[0]+vp[1]) / 2 , Verts = wp )

return ret

Expand Down

0 comments on commit abd22d8

Please sign in to comment.