retopo: use a smaller scale for faces that are modeled where 1.0==1m, will eventually try to use a method that doesnt depend on scale like this

grease pencil point.co wasnt a vector when it should be
This commit is contained in:
2009-11-30 10:21:42 +00:00
parent 7fd2a2da6f
commit e526047061
2 changed files with 3 additions and 5 deletions

View File

@@ -23,7 +23,7 @@ import bpy
EPS = 0.001
EPS_LINE_LINE = 0.02
EPS_COLLAPSE = 0.05
EPS_HUB = 0.05
EPS_HUB = 0.002
def get_hub(co, _hubs):
@@ -158,9 +158,7 @@ class Spline:
hub_prev = hub
def get_points(stroke):
from Mathutils import Vector
# TODO - why isnt point.co a Vector?
return [Vector(tuple(point.co)) for point in stroke.points]
return [point.co.copy() for point in stroke.points]
def get_splines(gp):
for l in gp.layers: