~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to release/scripts/freestyle/style_modules/sketchy_multiple_parameterization.py

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# ##### BEGIN GPL LICENSE BLOCK #####
 
2
#
 
3
#  This program is free software; you can redistribute it and/or
 
4
#  modify it under the terms of the GNU General Public License
 
5
#  as published by the Free Software Foundation; either version 2
 
6
#  of the License, or (at your option) any later version.
 
7
#
 
8
#  This program is distributed in the hope that it will be useful,
 
9
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
#  GNU General Public License for more details.
 
12
#
 
13
#  You should have received a copy of the GNU General Public License
 
14
#  along with this program; if not, write to the Free Software Foundation,
 
15
#  Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
16
#
 
17
# ##### END GPL LICENSE BLOCK #####
 
18
 
 
19
#  Filename : sketchy_multiple_parameterization.py
 
20
#  Author   : Stephane Grabli
 
21
#  Date     : 04/08/2005
 
22
#  Purpose  : Builds sketchy strokes whose topology relies on a 
 
23
#             parameterization that covers the complete lines (visible+invisible)
 
24
#             whereas only the visible portions are actually drawn
 
25
 
 
26
from ChainingIterators import pySketchyChainSilhouetteIterator
 
27
from freestyle import IncreasingColorShader, IncreasingThicknessShader, Operators, \
 
28
    QuantitativeInvisibilityUP1D, SamplingShader, SmoothingShader, SpatialNoiseShader, \
 
29
    TextureAssignerShader, TrueUP1D
 
30
from shaders import pyHLRShader
 
31
 
 
32
Operators.select(QuantitativeInvisibilityUP1D(0))
 
33
Operators.bidirectional_chain(pySketchyChainSilhouetteIterator(3, False))
 
34
shaders_list = [
 
35
    SamplingShader(2),
 
36
    SpatialNoiseShader(15, 120, 2, True, True),
 
37
    IncreasingThicknessShader(5, 30),
 
38
    SmoothingShader(100, 0.05, 0, 0.2, 0, 0, 0, 1),
 
39
    IncreasingColorShader(0, 0.2, 0, 1, 0.2, 0.7, 0.2, 1),
 
40
    TextureAssignerShader(6),
 
41
    pyHLRShader(),
 
42
    ]
 
43
Operators.create(TrueUP1D(), shaders_list)