Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-09-27 04:58:38 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2009-09-27 04:58:38 +0400
commit1ff038397fd3256c45899667bf1c3cba83947fa3 (patch)
tree704140e7652ef20e6a2c9de99a560eebf4c58bc7 /release/scripts/freestyle/style_modules/sketchy_topology_broken.py
parent069d21dddfef3361068afa987cc618f8fdaf48c3 (diff)
Made standard style modules compatible with Python 3.
Diffstat (limited to 'release/scripts/freestyle/style_modules/sketchy_topology_broken.py')
-rwxr-xr-xrelease/scripts/freestyle/style_modules/sketchy_topology_broken.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/freestyle/style_modules/sketchy_topology_broken.py b/release/scripts/freestyle/style_modules/sketchy_topology_broken.py
index 9cbb2725132..9ec0cffcfec 100755
--- a/release/scripts/freestyle/style_modules/sketchy_topology_broken.py
+++ b/release/scripts/freestyle/style_modules/sketchy_topology_broken.py
@@ -57,7 +57,7 @@ class pyBackboneStretcherNoCuspShader(StrokeShader):
newFirst = p0+d1*float(self._l)
v0.setPoint(newFirst)
else:
- print "got a v0 cusp"
+ print("got a v0 cusp")
vn_1 = itn_1.getObject()
vn = itn.getObject()
if((vn.getNature() & Nature.CUSP == 0) and (vn_1.getNature() & Nature.CUSP == 0)):
@@ -68,7 +68,7 @@ class pyBackboneStretcherNoCuspShader(StrokeShader):
newLast = pn+dn*float(self._l)
vn.setPoint(newLast)
else:
- print "got a vn cusp"
+ print("got a vn cusp")
Operators.select(QuantitativeInvisibilityUP1D(0))