Renamed FrsCurve, FrsNoise and FrsMaterial Python extension types

to those names without the "Frs" prefix.  These types are part of
the Freestyle module, so that there is no need to make their names
globally unique.
This commit is contained in:
Tamito Kajiyama
2010-05-09 18:05:33 +00:00
parent 906a7e69ca
commit 2385c51360
6 changed files with 13 additions and 13 deletions

View File

@@ -911,7 +911,7 @@ class pySinusDisplacementShader(StrokeShader):
class pyPerlinNoise1DShader(StrokeShader):
def __init__(self, freq = 10, amp = 10, oct = 4):
StrokeShader.__init__(self)
self.__noise = FrsNoise()
self.__noise = Noise()
self.__freq = freq
self.__amp = amp
self.__oct = oct
@@ -930,7 +930,7 @@ class pyPerlinNoise1DShader(StrokeShader):
class pyPerlinNoise2DShader(StrokeShader):
def __init__(self, freq = 10, amp = 10, oct = 4):
StrokeShader.__init__(self)
self.__noise = FrsNoise()
self.__noise = Noise()
self.__freq = freq
self.__amp = amp
self.__oct = oct