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

Functions1D.py « style_modules « freestyle « scripts « release - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aaf115356cb5575020e242ea5a6eb17cb0bca079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from freestyle_init import *
from Functions0D import *
import string 

class pyGetInverseProjectedZF1D(UnaryFunction1DDouble):
	def getName(self):
		return "pyGetInverseProjectedZF1D"

	def __call__(self, inter):
		func = GetProjectedZF1D()
		z = func(inter)
		return (1.0 - z)

class pyGetSquareInverseProjectedZF1D(UnaryFunction1DDouble):
	def getName(self):
		return "pyGetInverseProjectedZF1D"

	def __call__(self, inter):
		func = GetProjectedZF1D()
		z = func(inter)
		return (1.0 - z*z)

class pyDensityAnisotropyF1D(UnaryFunction1DDouble):
	def __init__(self,level,  integrationType=IntegrationType.MEAN, sampling=2.0):
		UnaryFunction1DDouble.__init__(self, integrationType)
		self._func = pyDensityAnisotropyF0D(level)
		self._integration = integrationType
		self._sampling = sampling
	def getName(self):
		return "pyDensityAnisotropyF1D"
	def __call__(self, inter):
		v = integrate(self._func, inter.pointsBegin(self._sampling), inter.pointsEnd(self._sampling), self._integration)
		return v

class pyViewMapGradientNormF1D(UnaryFunction1DDouble):
	def __init__(self,l, integrationType, sampling=2.0):
		UnaryFunction1DDouble.__init__(self, integrationType)
		self._func = pyViewMapGradientNormF0D(l)
		self._integration = integrationType
		self._sampling = sampling
	def getName(self):
		return "pyViewMapGradientNormF1D"
	def __call__(self, inter):
		v = integrate(self._func, inter.pointsBegin(self._sampling), inter.pointsEnd(self._sampling), self._integration)
		return v