[ArchWall] Write back Werner's code in commit cb21045 - check tex.image is not None

This commit is contained in:
paullee0
2019-12-01 15:46:04 +08:00
committed by Yorik van Havre
parent 4818fc4ab4
commit feaab20f43

View File

@@ -1165,7 +1165,14 @@ class _ViewProviderWall(ArchComponent.ViewProviderComponent):
self.Object = vobj.Object
from pivy import coin
tex = coin.SoTexture2()
tex.image = Draft.loadTexture(Draft.svgpatterns()['simple'][1], 128)
## TODO - https://github.com/FreeCAD/FreeCAD/pull/2746 Backmerge Werner's fix
#tex.image = Draft.loadTexture(Draft.svgpatterns()['simple'][1], 128)
image = Draft.loadTexture(Draft.svgpatterns()['simple'][1], 128)
if not image is None:
tex.image = image
## TODO
texcoords = coin.SoTextureCoordinatePlane()
s = FreeCAD.ParamGet("User parameter:BaseApp/Preferences/Mod/Arch").GetFloat("patternScale",0.01)
texcoords.directionS.setValue(s,0,0)